Unicode Finder

"霘" U+9718(CJK UNIFIED IDEOGRAPH-9718)

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

Programming

C
\u9718
JavaScript
\u9718
Java
\u9718
Json
\u9718
Python
\u9718
Perl
\x{9718}
PHP
\x{9718}
Ruby
\u{9718}
Rust
\u{9718}
Go
\u9718

Web

CSS
\009718
HtmlDecimal
霘
HtmlHexadecimal
霘
Url
%E9%9C%98

Code

MD5
a3a379c8e5763fe7ccceca44d94d1653
Sha1
128c8fe85304644112586f02399250e2730d3282
Base64
6ZyY

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9718';
console.log(char);  // Output: 霘

Java:

char c = '\u9718';
System.out.println(c);  // Output: 霘

JSON:

{"text": "\u9718"}  // Value: 霘

Python:

char = '\u9718'
print(char)  # Output: 霘

Perl:

my $char = "\x{9718}";
print $char;  # Output: 霘

PHP:

$char = "\x{9718}";
echo $char;  // Output: 霘

Ruby:

char = "\u{9718}"
puts char  # Output: 霘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009718";  /* Display: 霘 */
}

HTML Decimal:

<p>HTML decimal: &#38680;</p>  <!-- Display: 霘 -->

HTML Hexadecimal:

<p>HTML hex: &#x9718;</p>  <!-- Display: 霘 -->

URL Encoding:

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

Encodings

MD5:

a3a379c8e5763fe7ccceca44d94d1653

SHA1:

128c8fe85304644112586f02399250e2730d3282

Base64:

6ZyY