Unicode Finder

"⻁" U+2EC1(CJK RADICAL TIGER)

U+2EC1
Block Name
CJK Radicals Supplement
Name
CJK RADICAL TIGER

Programming

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

Web

CSS
\002EC1
HtmlDecimal
⻁
HtmlHexadecimal
⻁
Url
%E2%BB%81

Code

MD5
b198d6c2d67d62e912ffd9a1d7e4a2f4
Sha1
b57cba3230dfcc67d9cdf602ae4457e5cb3b7e65
Base64
4ruB

Usage Examples

Programming Languages

C:

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

JavaScript:

const char = '\u2EC1';
console.log(char);  // Output: ⻁

Java:

char c = '\u2EC1';
System.out.println(c);  // Output: ⻁

JSON:

{"text": "\u2EC1"}  // Value: ⻁

Python:

char = '\u2EC1'
print(char)  # Output: ⻁

Perl:

my $char = "\x{2EC1}";
print $char;  # Output: ⻁

PHP:

$char = "\x{2EC1}";
echo $char;  // Output: ⻁

Ruby:

char = "\u{2EC1}"
puts char  # Output: ⻁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#11969;</p>  <!-- Display: ⻁ -->

HTML Hexadecimal:

<p>HTML hex: &#x2EC1;</p>  <!-- Display: ⻁ -->

URL Encoding:

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

Encodings

MD5:

b198d6c2d67d62e912ffd9a1d7e4a2f4

SHA1:

b57cba3230dfcc67d9cdf602ae4457e5cb3b7e65

Base64:

4ruB