Unicode Finder

"ⷨ" U+2DE8(COMBINING CYRILLIC LETTER EM)

U+2DE8
Block Name
Cyrillic Extended-A
Name
COMBINING CYRILLIC LETTER EM

Programming

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

Web

CSS
\002DE8
HtmlDecimal
ⷨ
HtmlHexadecimal
ⷨ
Url
%E2%B7%A8

Code

MD5
f6eb2e6a632a4129bd098174ddbe92d0
Sha1
1c4bb803472d568bbee04829f9f9a7cc86f9fdf0
Base64
4reo

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2DE8';
console.log(char);  // Output: ⷨ

Java:

char c = '\u2DE8';
System.out.println(c);  // Output: ⷨ

JSON:

{"text": "\u2DE8"}  // Value: ⷨ

Python:

char = '\u2DE8'
print(char)  # Output: ⷨ

Perl:

my $char = "\x{2DE8}";
print $char;  # Output: ⷨ

PHP:

$char = "\x{2DE8}";
echo $char;  // Output: ⷨ

Ruby:

char = "\u{2DE8}"
puts char  # Output: ⷨ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11752;</p>  <!-- Display: ⷨ -->

HTML Hexadecimal:

<p>HTML hex: &#x2DE8;</p>  <!-- Display: ⷨ -->

URL Encoding:

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

Encodings

MD5:

f6eb2e6a632a4129bd098174ddbe92d0

SHA1:

1c4bb803472d568bbee04829f9f9a7cc86f9fdf0

Base64:

4reo