Unicode Finder

"ⷬ" U+2DEC(COMBINING CYRILLIC LETTER ER)

U+2DEC
Block Name
Cyrillic Extended-A
Name
COMBINING CYRILLIC LETTER ER

Programming

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

Web

CSS
\002DEC
HtmlDecimal
ⷬ
HtmlHexadecimal
ⷬ
Url
%E2%B7%AC

Code

MD5
be48bfd37deb7d9c7ceab7263828d813
Sha1
8882594e6e0ff0ebdb9c80ca6c885c100f290f74
Base64
4res

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2DEC';
console.log(char);  // Output: ⷬ

Java:

char c = '\u2DEC';
System.out.println(c);  // Output: ⷬ

JSON:

{"text": "\u2DEC"}  // Value: ⷬ

Python:

char = '\u2DEC'
print(char)  # Output: ⷬ

Perl:

my $char = "\x{2DEC}";
print $char;  # Output: ⷬ

PHP:

$char = "\x{2DEC}";
echo $char;  // Output: ⷬ

Ruby:

char = "\u{2DEC}"
puts char  # Output: ⷬ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11756;</p>  <!-- Display: ⷬ -->

HTML Hexadecimal:

<p>HTML hex: &#x2DEC;</p>  <!-- Display: ⷬ -->

URL Encoding:

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

Encodings

MD5:

be48bfd37deb7d9c7ceab7263828d813

SHA1:

8882594e6e0ff0ebdb9c80ca6c885c100f290f74

Base64:

4res