Unicode Finder

"ⷤ" U+2DE4(COMBINING CYRILLIC LETTER ZHE)

U+2DE4
Block Name
Cyrillic Extended-A
Name
COMBINING CYRILLIC LETTER ZHE

Programming

C
\u2DE4
JavaScript
\u2DE4
Java
\u2DE4
Json
\u2DE4
Python
\u2DE4
Perl
\x{2DE4}
PHP
\x{2DE4}
Ruby
\u{2DE4}
Rust
\u{2DE4}
Go
\u2DE4

Web

CSS
\002DE4
HtmlDecimal
ⷤ
HtmlHexadecimal
ⷤ
Url
%E2%B7%A4

Code

MD5
9e2172d862a055ddb47dc43c9c39e5d2
Sha1
3109617276338485752ced973a1aee015a9e7316
Base64
4rek

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2DE4';
console.log(char);  // Output: ⷤ

Java:

char c = '\u2DE4';
System.out.println(c);  // Output: ⷤ

JSON:

{"text": "\u2DE4"}  // Value: ⷤ

Python:

char = '\u2DE4'
print(char)  # Output: ⷤ

Perl:

my $char = "\x{2DE4}";
print $char;  # Output: ⷤ

PHP:

$char = "\x{2DE4}";
echo $char;  // Output: ⷤ

Ruby:

char = "\u{2DE4}"
puts char  # Output: ⷤ

Rust:

let c = '\u{2DE4}';
println!("{}", c);  // Output: ⷤ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002DE4";  /* Display: ⷤ */
}

HTML Decimal:

<p>HTML decimal: &#11748;</p>  <!-- Display: ⷤ -->

HTML Hexadecimal:

<p>HTML hex: &#x2DE4;</p>  <!-- Display: ⷤ -->

URL Encoding:

// ⷤ URL encoding
https://unicodefinder.com/search.php?query=%E2%B7%A4

Encodings

MD5:

9e2172d862a055ddb47dc43c9c39e5d2

SHA1:

3109617276338485752ced973a1aee015a9e7316

Base64:

4rek