Unicode Finder

"霩" U+9729(CJK UNIFIED IDEOGRAPH-9729)

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

Programming

C
\u9729
JavaScript
\u9729
Java
\u9729
Json
\u9729
Python
\u9729
Perl
\x{9729}
PHP
\x{9729}
Ruby
\u{9729}
Rust
\u{9729}
Go
\u9729

Web

CSS
\009729
HtmlDecimal
霩
HtmlHexadecimal
霩
Url
%E9%9C%A9

Code

MD5
39a632c8decd7b3ff8383690491325fc
Sha1
49ccb64e6a80eb6d804227e725a7d1ace9b0a952
Base64
6Zyp

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9729';
console.log(char);  // Output: 霩

Java:

char c = '\u9729';
System.out.println(c);  // Output: 霩

JSON:

{"text": "\u9729"}  // Value: 霩

Python:

char = '\u9729'
print(char)  # Output: 霩

Perl:

my $char = "\x{9729}";
print $char;  # Output: 霩

PHP:

$char = "\x{9729}";
echo $char;  // Output: 霩

Ruby:

char = "\u{9729}"
puts char  # Output: 霩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009729";  /* Display: 霩 */
}

HTML Decimal:

<p>HTML decimal: &#38697;</p>  <!-- Display: 霩 -->

HTML Hexadecimal:

<p>HTML hex: &#x9729;</p>  <!-- Display: 霩 -->

URL Encoding:

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

Encodings

MD5:

39a632c8decd7b3ff8383690491325fc

SHA1:

49ccb64e6a80eb6d804227e725a7d1ace9b0a952

Base64:

6Zyp