Unicode Finder

"衲" U+8872(CJK UNIFIED IDEOGRAPH-8872)

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

Programming

C
\u8872
JavaScript
\u8872
Java
\u8872
Json
\u8872
Python
\u8872
Perl
\x{8872}
PHP
\x{8872}
Ruby
\u{8872}
Rust
\u{8872}
Go
\u8872

Web

CSS
\008872
HtmlDecimal
衲
HtmlHexadecimal
衲
Url
%E8%A1%B2

Code

MD5
6aecf9081a58542af88b4acc7be52a00
Sha1
0aa390e0c2031de9f4c906e8b6ec681cd92c8c75
Base64
6KGy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8872';
console.log(char);  // Output: 衲

Java:

char c = '\u8872';
System.out.println(c);  // Output: 衲

JSON:

{"text": "\u8872"}  // Value: 衲

Python:

char = '\u8872'
print(char)  # Output: 衲

Perl:

my $char = "\x{8872}";
print $char;  # Output: 衲

PHP:

$char = "\x{8872}";
echo $char;  // Output: 衲

Ruby:

char = "\u{8872}"
puts char  # Output: 衲

Rust:

let c = '\u{8872}';
println!("{}", c);  // Output: 衲

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008872";  /* Display: 衲 */
}

HTML Decimal:

<p>HTML decimal: &#34930;</p>  <!-- Display: 衲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8872;</p>  <!-- Display: 衲 -->

URL Encoding:

// 衲 URL encoding
https://unicodefinder.com/search.php?query=%E8%A1%B2

Encodings

MD5:

6aecf9081a58542af88b4acc7be52a00

SHA1:

0aa390e0c2031de9f4c906e8b6ec681cd92c8c75

Base64:

6KGy