Unicode Finder

"⻉" U+2EC9(CJK RADICAL C-SIMPLIFIED SHELL)

U+2EC9
Block Name
CJK Radicals Supplement
Name
CJK RADICAL C-SIMPLIFIED SHELL

Programming

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

Web

CSS
\002EC9
HtmlDecimal
⻉
HtmlHexadecimal
⻉
Url
%E2%BB%89

Code

MD5
13c0a2edff0f2c7c0c73872d93c6db97
Sha1
af369f0ab78a1e91589b3e3b47c6f68ac1f6d621
Base64
4ruJ

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2EC9';
console.log(char);  // Output: ⻉

Java:

char c = '\u2EC9';
System.out.println(c);  // Output: ⻉

JSON:

{"text": "\u2EC9"}  // Value: ⻉

Python:

char = '\u2EC9'
print(char)  # Output: ⻉

Perl:

my $char = "\x{2EC9}";
print $char;  # Output: ⻉

PHP:

$char = "\x{2EC9}";
echo $char;  // Output: ⻉

Ruby:

char = "\u{2EC9}"
puts char  # Output: ⻉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11977;</p>  <!-- Display: ⻉ -->

HTML Hexadecimal:

<p>HTML hex: &#x2EC9;</p>  <!-- Display: ⻉ -->

URL Encoding:

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

Encodings

MD5:

13c0a2edff0f2c7c0c73872d93c6db97

SHA1:

af369f0ab78a1e91589b3e3b47c6f68ac1f6d621

Base64:

4ruJ