Unicode Finder

"二" U+4E8C(CJK UNIFIED IDEOGRAPH-4E8C)

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

Programming

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

Web

CSS
\004E8C
HtmlDecimal
二
HtmlHexadecimal
二
Url
%E4%BA%8C

Code

MD5
2d8be272c9e78713e31e5c0c165422bb
Sha1
1d5639f716b643b7204f04b0c3ef9ab222ee75ba
Base64
5LqM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4E8C';
console.log(char);  // Output: 二

Java:

char c = '\u4E8C';
System.out.println(c);  // Output: 二

JSON:

{"text": "\u4E8C"}  // Value: 二

Python:

char = '\u4E8C'
print(char)  # Output: 二

Perl:

my $char = "\x{4E8C}";
print $char;  # Output: 二

PHP:

$char = "\x{4E8C}";
echo $char;  // Output: 二

Ruby:

char = "\u{4E8C}"
puts char  # Output: 二

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20108;</p>  <!-- Display: 二 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E8C;</p>  <!-- Display: 二 -->

URL Encoding:

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

Encodings

MD5:

2d8be272c9e78713e31e5c0c165422bb

SHA1:

1d5639f716b643b7204f04b0c3ef9ab222ee75ba

Base64:

5LqM