Unicode Finder

"霱" U+9731(CJK UNIFIED IDEOGRAPH-9731)

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

Programming

C
\u9731
JavaScript
\u9731
Java
\u9731
Json
\u9731
Python
\u9731
Perl
\x{9731}
PHP
\x{9731}
Ruby
\u{9731}
Rust
\u{9731}
Go
\u9731

Web

CSS
\009731
HtmlDecimal
霱
HtmlHexadecimal
霱
Url
%E9%9C%B1

Code

MD5
c0f14b163d97f9d2065c48f6f14b75b9
Sha1
bd39a67c24a2275a8992b6240f07e92bb2f7ea7b
Base64
6Zyx

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9731';
console.log(char);  // Output: 霱

Java:

char c = '\u9731';
System.out.println(c);  // Output: 霱

JSON:

{"text": "\u9731"}  // Value: 霱

Python:

char = '\u9731'
print(char)  # Output: 霱

Perl:

my $char = "\x{9731}";
print $char;  # Output: 霱

PHP:

$char = "\x{9731}";
echo $char;  // Output: 霱

Ruby:

char = "\u{9731}"
puts char  # Output: 霱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009731";  /* Display: 霱 */
}

HTML Decimal:

<p>HTML decimal: &#38705;</p>  <!-- Display: 霱 -->

HTML Hexadecimal:

<p>HTML hex: &#x9731;</p>  <!-- Display: 霱 -->

URL Encoding:

// 霱 URL encoding
https://unicodefinder.com/search.php?query=%E9%9C%B1

Encodings

MD5:

c0f14b163d97f9d2065c48f6f14b75b9

SHA1:

bd39a67c24a2275a8992b6240f07e92bb2f7ea7b

Base64:

6Zyx