Unicode Finder

"顖" U+9856(CJK UNIFIED IDEOGRAPH-9856)

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

Programming

C
\u9856
JavaScript
\u9856
Java
\u9856
Json
\u9856
Python
\u9856
Perl
\x{9856}
PHP
\x{9856}
Ruby
\u{9856}
Rust
\u{9856}
Go
\u9856

Web

CSS
\009856
HtmlDecimal
顖
HtmlHexadecimal
顖
Url
%E9%A1%96

Code

MD5
4a4c9830aab58cc1b303183e99bcd1cd
Sha1
1bbcac201bba6788504e4ede961648d4f6e06432
Base64
6aGW

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9856';
console.log(char);  // Output: 顖

Java:

char c = '\u9856';
System.out.println(c);  // Output: 顖

JSON:

{"text": "\u9856"}  // Value: 顖

Python:

char = '\u9856'
print(char)  # Output: 顖

Perl:

my $char = "\x{9856}";
print $char;  # Output: 顖

PHP:

$char = "\x{9856}";
echo $char;  // Output: 顖

Ruby:

char = "\u{9856}"
puts char  # Output: 顖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009856";  /* Display: 顖 */
}

HTML Decimal:

<p>HTML decimal: &#38998;</p>  <!-- Display: 顖 -->

HTML Hexadecimal:

<p>HTML hex: &#x9856;</p>  <!-- Display: 顖 -->

URL Encoding:

// 顖 URL encoding
https://unicodefinder.com/search.php?query=%E9%A1%96

Encodings

MD5:

4a4c9830aab58cc1b303183e99bcd1cd

SHA1:

1bbcac201bba6788504e4ede961648d4f6e06432

Base64:

6aGW