Unicode Finder

"霥" U+9725(CJK UNIFIED IDEOGRAPH-9725)

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

Programming

C
\u9725
JavaScript
\u9725
Java
\u9725
Json
\u9725
Python
\u9725
Perl
\x{9725}
PHP
\x{9725}
Ruby
\u{9725}
Rust
\u{9725}
Go
\u9725

Web

CSS
\009725
HtmlDecimal
霥
HtmlHexadecimal
霥
Url
%E9%9C%A5

Code

MD5
f5927a297227fed99a3368fec94f23cd
Sha1
b25f20aca6c3ed05d770b3fa277ef3ab31164823
Base64
6Zyl

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9725';
console.log(char);  // Output: 霥

Java:

char c = '\u9725';
System.out.println(c);  // Output: 霥

JSON:

{"text": "\u9725"}  // Value: 霥

Python:

char = '\u9725'
print(char)  # Output: 霥

Perl:

my $char = "\x{9725}";
print $char;  # Output: 霥

PHP:

$char = "\x{9725}";
echo $char;  // Output: 霥

Ruby:

char = "\u{9725}"
puts char  # Output: 霥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009725";  /* Display: 霥 */
}

HTML Decimal:

<p>HTML decimal: &#38693;</p>  <!-- Display: 霥 -->

HTML Hexadecimal:

<p>HTML hex: &#x9725;</p>  <!-- Display: 霥 -->

URL Encoding:

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

Encodings

MD5:

f5927a297227fed99a3368fec94f23cd

SHA1:

b25f20aca6c3ed05d770b3fa277ef3ab31164823

Base64:

6Zyl