Unicode Finder

"褂" U+8902(CJK UNIFIED IDEOGRAPH-8902)

U+8902
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8902

Programming

C
\u8902
JavaScript
\u8902
Java
\u8902
Json
\u8902
Python
\u8902
Perl
\x{8902}
PHP
\x{8902}
Ruby
\u{8902}
Rust
\u{8902}
Go
\u8902

Web

CSS
\008902
HtmlDecimal
褂
HtmlHexadecimal
褂
Url
%E8%A4%82

Code

MD5
15ef4376d06444ca5652beecc7afb649
Sha1
3a2cc9f81602e84cafe92f06c099bc79b5d450cb
Base64
6KSC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8902';
console.log(char);  // Output: 褂

Java:

char c = '\u8902';
System.out.println(c);  // Output: 褂

JSON:

{"text": "\u8902"}  // Value: 褂

Python:

char = '\u8902'
print(char)  # Output: 褂

Perl:

my $char = "\x{8902}";
print $char;  # Output: 褂

PHP:

$char = "\x{8902}";
echo $char;  // Output: 褂

Ruby:

char = "\u{8902}"
puts char  # Output: 褂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008902";  /* Display: 褂 */
}

HTML Decimal:

<p>HTML decimal: &#35074;</p>  <!-- Display: 褂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8902;</p>  <!-- Display: 褂 -->

URL Encoding:

// 褂 URL encoding
https://unicodefinder.com/search.php?query=%E8%A4%82

Encodings

MD5:

15ef4376d06444ca5652beecc7afb649

SHA1:

3a2cc9f81602e84cafe92f06c099bc79b5d450cb

Base64:

6KSC