Unicode Finder

"顕" U+9855(CJK UNIFIED IDEOGRAPH-9855)

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

Programming

C
\u9855
JavaScript
\u9855
Java
\u9855
Json
\u9855
Python
\u9855
Perl
\x{9855}
PHP
\x{9855}
Ruby
\u{9855}
Rust
\u{9855}
Go
\u9855

Web

CSS
\009855
HtmlDecimal
顕
HtmlHexadecimal
顕
Url
%E9%A1%95

Code

MD5
0e35d103075c95c79ce0f2df2f95d068
Sha1
11a2e1771117901ae2646b087620119d25167c22
Base64
6aGV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9855';
console.log(char);  // Output: 顕

Java:

char c = '\u9855';
System.out.println(c);  // Output: 顕

JSON:

{"text": "\u9855"}  // Value: 顕

Python:

char = '\u9855'
print(char)  # Output: 顕

Perl:

my $char = "\x{9855}";
print $char;  # Output: 顕

PHP:

$char = "\x{9855}";
echo $char;  // Output: 顕

Ruby:

char = "\u{9855}"
puts char  # Output: 顕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009855";  /* Display: 顕 */
}

HTML Decimal:

<p>HTML decimal: &#38997;</p>  <!-- Display: 顕 -->

HTML Hexadecimal:

<p>HTML hex: &#x9855;</p>  <!-- Display: 顕 -->

URL Encoding:

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

Encodings

MD5:

0e35d103075c95c79ce0f2df2f95d068

SHA1:

11a2e1771117901ae2646b087620119d25167c22

Base64:

6aGV