Unicode Finder

"仂" U+4EC2(CJK UNIFIED IDEOGRAPH-4EC2)

U+4EC2
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-4EC2

Programming

C
\u4EC2
JavaScript
\u4EC2
Java
\u4EC2
Json
\u4EC2
Python
\u4EC2
Perl
\x{4EC2}
PHP
\x{4EC2}
Ruby
\u{4EC2}
Rust
\u{4EC2}
Go
\u4EC2

Web

CSS
\004EC2
HtmlDecimal
仂
HtmlHexadecimal
仂
Url
%E4%BB%82

Code

MD5
9f65160fffbb2a1aa45db74a46ebc2e6
Sha1
070569d6a68303cd5858f04c473a53109ee609ce
Base64
5LuC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4EC2';
console.log(char);  // Output: 仂

Java:

char c = '\u4EC2';
System.out.println(c);  // Output: 仂

JSON:

{"text": "\u4EC2"}  // Value: 仂

Python:

char = '\u4EC2'
print(char)  # Output: 仂

Perl:

my $char = "\x{4EC2}";
print $char;  # Output: 仂

PHP:

$char = "\x{4EC2}";
echo $char;  // Output: 仂

Ruby:

char = "\u{4EC2}"
puts char  # Output: 仂

Rust:

let c = '\u{4EC2}';
println!("{}", c);  // Output: 仂

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004EC2";  /* Display: 仂 */
}

HTML Decimal:

<p>HTML decimal: &#20162;</p>  <!-- Display: 仂 -->

HTML Hexadecimal:

<p>HTML hex: &#x4EC2;</p>  <!-- Display: 仂 -->

URL Encoding:

// 仂 URL encoding
https://unicodefinder.com/search.php?query=%E4%BB%82

Encodings

MD5:

9f65160fffbb2a1aa45db74a46ebc2e6

SHA1:

070569d6a68303cd5858f04c473a53109ee609ce

Base64:

5LuC