Unicode Finder

"⻄" U+2EC4(CJK RADICAL WEST TWO)

U+2EC4
Block Name
CJK Radicals Supplement
Name
CJK RADICAL WEST TWO

Programming

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

Web

CSS
\002EC4
HtmlDecimal
⻄
HtmlHexadecimal
⻄
Url
%E2%BB%84

Code

MD5
ff11312575fe4fcfac9ee1d74a65908a
Sha1
c2164009cde4df0e34a19001bd66a76fc838a3b8
Base64
4ruE

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2EC4';
console.log(char);  // Output: ⻄

Java:

char c = '\u2EC4';
System.out.println(c);  // Output: ⻄

JSON:

{"text": "\u2EC4"}  // Value: ⻄

Python:

char = '\u2EC4'
print(char)  # Output: ⻄

Perl:

my $char = "\x{2EC4}";
print $char;  # Output: ⻄

PHP:

$char = "\x{2EC4}";
echo $char;  // Output: ⻄

Ruby:

char = "\u{2EC4}"
puts char  # Output: ⻄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11972;</p>  <!-- Display: ⻄ -->

HTML Hexadecimal:

<p>HTML hex: &#x2EC4;</p>  <!-- Display: ⻄ -->

URL Encoding:

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

Encodings

MD5:

ff11312575fe4fcfac9ee1d74a65908a

SHA1:

c2164009cde4df0e34a19001bd66a76fc838a3b8

Base64:

4ruE