Unicode Finder

"ⷭ" U+2DED(COMBINING CYRILLIC LETTER ES)

U+2DED
Block Name
Cyrillic Extended-A
Name
COMBINING CYRILLIC LETTER ES

Programming

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

Web

CSS
\002DED
HtmlDecimal
ⷭ
HtmlHexadecimal
ⷭ
Url
%E2%B7%AD

Code

MD5
fe7d225e6efcc439e99db622a6ff4610
Sha1
a2c0e3cf7044dc2f1120c36d5beeda699c4294eb
Base64
4ret

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2DED';
console.log(char);  // Output: ⷭ

Java:

char c = '\u2DED';
System.out.println(c);  // Output: ⷭ

JSON:

{"text": "\u2DED"}  // Value: ⷭ

Python:

char = '\u2DED'
print(char)  # Output: ⷭ

Perl:

my $char = "\x{2DED}";
print $char;  # Output: ⷭ

PHP:

$char = "\x{2DED}";
echo $char;  // Output: ⷭ

Ruby:

char = "\u{2DED}"
puts char  # Output: ⷭ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11757;</p>  <!-- Display: ⷭ -->

HTML Hexadecimal:

<p>HTML hex: &#x2DED;</p>  <!-- Display: ⷭ -->

URL Encoding:

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

Encodings

MD5:

fe7d225e6efcc439e99db622a6ff4610

SHA1:

a2c0e3cf7044dc2f1120c36d5beeda699c4294eb

Base64:

4ret