Unicode Finder

"⺌" U+2E8C(CJK RADICAL SMALL ONE)

U+2E8C
Block Name
CJK Radicals Supplement
Name
CJK RADICAL SMALL ONE

Programming

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

Web

CSS
\002E8C
HtmlDecimal
⺌
HtmlHexadecimal
⺌
Url
%E2%BA%8C

Code

MD5
c4bb5ea8e58269d7d412aef7a574beeb
Sha1
78dadf1b2dc128e9fca5228fa3f172acc1a1d43b
Base64
4rqM

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2E8C';
console.log(char);  // Output: ⺌

Java:

char c = '\u2E8C';
System.out.println(c);  // Output: ⺌

JSON:

{"text": "\u2E8C"}  // Value: ⺌

Python:

char = '\u2E8C'
print(char)  # Output: ⺌

Perl:

my $char = "\x{2E8C}";
print $char;  # Output: ⺌

PHP:

$char = "\x{2E8C}";
echo $char;  // Output: ⺌

Ruby:

char = "\u{2E8C}"
puts char  # Output: ⺌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11916;</p>  <!-- Display: ⺌ -->

HTML Hexadecimal:

<p>HTML hex: &#x2E8C;</p>  <!-- Display: ⺌ -->

URL Encoding:

// ⺌ URL encoding
https://unicodefinder.com/search.php?query=%E2%BA%8C

Encodings

MD5:

c4bb5ea8e58269d7d412aef7a574beeb

SHA1:

78dadf1b2dc128e9fca5228fa3f172acc1a1d43b

Base64:

4rqM