Unicode Finder

"褑" U+8911(CJK UNIFIED IDEOGRAPH-8911)

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

Programming

C
\u8911
JavaScript
\u8911
Java
\u8911
Json
\u8911
Python
\u8911
Perl
\x{8911}
PHP
\x{8911}
Ruby
\u{8911}
Rust
\u{8911}
Go
\u8911

Web

CSS
\008911
HtmlDecimal
褑
HtmlHexadecimal
褑
Url
%E8%A4%91

Code

MD5
9e93f786e3587c8cce216913e2c90831
Sha1
877bcbbf11b64b6cdade8d7f25feed788dfd28cc
Base64
6KSR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8911';
console.log(char);  // Output: 褑

Java:

char c = '\u8911';
System.out.println(c);  // Output: 褑

JSON:

{"text": "\u8911"}  // Value: 褑

Python:

char = '\u8911'
print(char)  # Output: 褑

Perl:

my $char = "\x{8911}";
print $char;  # Output: 褑

PHP:

$char = "\x{8911}";
echo $char;  // Output: 褑

Ruby:

char = "\u{8911}"
puts char  # Output: 褑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008911";  /* Display: 褑 */
}

HTML Decimal:

<p>HTML decimal: &#35089;</p>  <!-- Display: 褑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8911;</p>  <!-- Display: 褑 -->

URL Encoding:

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

Encodings

MD5:

9e93f786e3587c8cce216913e2c90831

SHA1:

877bcbbf11b64b6cdade8d7f25feed788dfd28cc

Base64:

6KSR