Unicode Finder

"貑" U+8C91(CJK UNIFIED IDEOGRAPH-8C91)

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

Programming

C
\u8C91
JavaScript
\u8C91
Java
\u8C91
Json
\u8C91
Python
\u8C91
Perl
\x{8C91}
PHP
\x{8C91}
Ruby
\u{8C91}
Rust
\u{8C91}
Go
\u8C91

Web

CSS
\008C91
HtmlDecimal
貑
HtmlHexadecimal
貑
Url
%E8%B2%91

Code

MD5
bdf2f83d2dc077e2e62b7ef5c0c8d653
Sha1
af4543c942f55ddb0560d1331bb86d564dd90390
Base64
6LKR

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8C91';
console.log(char);  // Output: 貑

Java:

char c = '\u8C91';
System.out.println(c);  // Output: 貑

JSON:

{"text": "\u8C91"}  // Value: 貑

Python:

char = '\u8C91'
print(char)  # Output: 貑

Perl:

my $char = "\x{8C91}";
print $char;  # Output: 貑

PHP:

$char = "\x{8C91}";
echo $char;  // Output: 貑

Ruby:

char = "\u{8C91}"
puts char  # Output: 貑

Rust:

let c = '\u{8C91}';
println!("{}", c);  // Output: 貑

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008C91";  /* Display: 貑 */
}

HTML Decimal:

<p>HTML decimal: &#35985;</p>  <!-- Display: 貑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8C91;</p>  <!-- Display: 貑 -->

URL Encoding:

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

Encodings

MD5:

bdf2f83d2dc077e2e62b7ef5c0c8d653

SHA1:

af4543c942f55ddb0560d1331bb86d564dd90390

Base64:

6LKR