Unicode Finder

"⻬" U+2EEC(CJK RADICAL C-SIMPLIFIED EVEN)

U+2EEC
Block Name
CJK Radicals Supplement
Name
CJK RADICAL C-SIMPLIFIED EVEN

Programming

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

Web

CSS
\002EEC
HtmlDecimal
⻬
HtmlHexadecimal
⻬
Url
%E2%BB%AC

Code

MD5
d10dd474e7b9def4b72e56188f7af3a1
Sha1
13121da02b7cd1ca69538f67731680cae6581932
Base64
4rus

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2EEC';
console.log(char);  // Output: ⻬

Java:

char c = '\u2EEC';
System.out.println(c);  // Output: ⻬

JSON:

{"text": "\u2EEC"}  // Value: ⻬

Python:

char = '\u2EEC'
print(char)  # Output: ⻬

Perl:

my $char = "\x{2EEC}";
print $char;  # Output: ⻬

PHP:

$char = "\x{2EEC}";
echo $char;  // Output: ⻬

Ruby:

char = "\u{2EEC}"
puts char  # Output: ⻬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#12012;</p>  <!-- Display: ⻬ -->

HTML Hexadecimal:

<p>HTML hex: &#x2EEC;</p>  <!-- Display: ⻬ -->

URL Encoding:

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

Encodings

MD5:

d10dd474e7b9def4b72e56188f7af3a1

SHA1:

13121da02b7cd1ca69538f67731680cae6581932

Base64:

4rus