Unicode Finder

"ԩ" U+0529(CYRILLIC SMALL LETTER EN WITH LEFT HOOK)

ԩ
U+0529
שם בלוק
Cyrillic Supplement
שם
CYRILLIC SMALL LETTER EN WITH LEFT HOOK

Programming

C
\u0529
JavaScript
\u0529
Java
\u0529
Json
\u0529
Python
\u0529
Perl
\x{0529}
PHP
\x{0529}
Ruby
\u{0529}
Rust
\u{529}
Go
\u0529

Web

CSS
\000529
HtmlDecimal
ԩ
HtmlHexadecimal
ԩ
Url
%D4%A9

Code

MD5
caa4cf1167265d0507ec8afe0b555945
Sha1
7b8867086e75e7ec57da9f83386be2aced34b2d1
Base64
1Kk=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0529';
console.log(char);  // Output: ԩ

Java:

char c = '\u0529';
System.out.println(c);  // Output: ԩ

JSON:

{"text": "\u0529"}  // Value: ԩ

Python:

char = '\u0529'
print(char)  # Output: ԩ

Perl:

my $char = "\x{0529}";
print $char;  # Output: ԩ

PHP:

$char = "\x{0529}";
echo $char;  // Output: ԩ

Ruby:

char = "\u{0529}"
puts char  # Output: ԩ

Rust:

let c = '\u{529}';
println!("{}", c);  // Output: ԩ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000529";  /* Display: ԩ */
}

HTML Decimal:

<p>HTML decimal: &#1321;</p>  <!-- Display: ԩ -->

HTML Hexadecimal:

<p>HTML hex: &#x0529;</p>  <!-- Display: ԩ -->

URL Encoding:

// ԩ URL encoding
https://unicodefinder.com/search.php?query=%D4%A9

Encodings

MD5:

caa4cf1167265d0507ec8afe0b555945

SHA1:

7b8867086e75e7ec57da9f83386be2aced34b2d1

Base64:

1Kk=