Unicode Finder

"霙" U+9719(CJK UNIFIED IDEOGRAPH-9719)

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

Programming

C
\u9719
JavaScript
\u9719
Java
\u9719
Json
\u9719
Python
\u9719
Perl
\x{9719}
PHP
\x{9719}
Ruby
\u{9719}
Rust
\u{9719}
Go
\u9719

Web

CSS
\009719
HtmlDecimal
霙
HtmlHexadecimal
霙
Url
%E9%9C%99

Code

MD5
7037890a8b6de973b99ea2317c8fc5a6
Sha1
61763a5aeac65ee9496634ec994dfba2946069de
Base64
6ZyZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9719';
console.log(char);  // Output: 霙

Java:

char c = '\u9719';
System.out.println(c);  // Output: 霙

JSON:

{"text": "\u9719"}  // Value: 霙

Python:

char = '\u9719'
print(char)  # Output: 霙

Perl:

my $char = "\x{9719}";
print $char;  # Output: 霙

PHP:

$char = "\x{9719}";
echo $char;  // Output: 霙

Ruby:

char = "\u{9719}"
puts char  # Output: 霙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009719";  /* Display: 霙 */
}

HTML Decimal:

<p>HTML decimal: &#38681;</p>  <!-- Display: 霙 -->

HTML Hexadecimal:

<p>HTML hex: &#x9719;</p>  <!-- Display: 霙 -->

URL Encoding:

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

Encodings

MD5:

7037890a8b6de973b99ea2317c8fc5a6

SHA1:

61763a5aeac65ee9496634ec994dfba2946069de

Base64:

6ZyZ