Unicode Finder

"ԍ" U+050D(CYRILLIC SMALL LETTER KOMI SJE)

ԍ
U+050D
שם בלוק
Cyrillic Supplement
שם
CYRILLIC SMALL LETTER KOMI SJE

Programming

C
\u050D
JavaScript
\u050D
Java
\u050D
Json
\u050D
Python
\u050D
Perl
\x{050D}
PHP
\x{050D}
Ruby
\u{050D}
Rust
\u{50D}
Go
\u050D

Web

CSS
\00050D
HtmlDecimal
ԍ
HtmlHexadecimal
ԍ
Url
%D4%8D

Code

MD5
20614bb9c4390a95f3466812cac7dbfb
Sha1
2af3fef91972015d739a0e05ab77e6b97e11c369
Base64
1I0=

דוגמאות שימוש

Programming Languages

C:

char c = '\u050D';
printf("%c\n", c);  // Output: ԍ

JavaScript:

const char = '\u050D';
console.log(char);  // Output: ԍ

Java:

char c = '\u050D';
System.out.println(c);  // Output: ԍ

JSON:

{"text": "\u050D"}  // Value: ԍ

Python:

char = '\u050D'
print(char)  # Output: ԍ

Perl:

my $char = "\x{050D}";
print $char;  # Output: ԍ

PHP:

$char = "\x{050D}";
echo $char;  // Output: ԍ

Ruby:

char = "\u{050D}"
puts char  # Output: ԍ

Rust:

let c = '\u{50D}';
println!("{}", c);  // Output: ԍ

Go:

char := '\u050D'
fmt.Printf("%c\n", char)  // Output: ԍ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00050D";  /* Display: ԍ */
}

HTML Decimal:

<p>HTML decimal: &#1293;</p>  <!-- Display: ԍ -->

HTML Hexadecimal:

<p>HTML hex: &#x050D;</p>  <!-- Display: ԍ -->

URL Encoding:

// ԍ URL encoding
https://unicodefinder.com/search.php?query=%D4%8D

Encodings

MD5:

20614bb9c4390a95f3466812cac7dbfb

SHA1:

2af3fef91972015d739a0e05ab77e6b97e11c369

Base64:

1I0=