Unicode Finder

"茙" U+8319(CJK UNIFIED IDEOGRAPH-8319)

U+8319
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8319

Programming

C
\u8319
JavaScript
\u8319
Java
\u8319
Json
\u8319
Python
\u8319
Perl
\x{8319}
PHP
\x{8319}
Ruby
\u{8319}
Rust
\u{8319}
Go
\u8319

Web

CSS
\008319
HtmlDecimal
茙
HtmlHexadecimal
茙
Url
%E8%8C%99

Code

MD5
31ab896f499362adb7b95172eac2e629
Sha1
ea097a19496df790d29b8c891d36cdbfbebd5739
Base64
6IyZ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8319';
console.log(char);  // Output: 茙

Java:

char c = '\u8319';
System.out.println(c);  // Output: 茙

JSON:

{"text": "\u8319"}  // Value: 茙

Python:

char = '\u8319'
print(char)  # Output: 茙

Perl:

my $char = "\x{8319}";
print $char;  # Output: 茙

PHP:

$char = "\x{8319}";
echo $char;  // Output: 茙

Ruby:

char = "\u{8319}"
puts char  # Output: 茙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008319";  /* Display: 茙 */
}

HTML Decimal:

<p>HTML decimal: &#33561;</p>  <!-- Display: 茙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8319;</p>  <!-- Display: 茙 -->

URL Encoding:

// 茙 URL encoding
https://unicodefinder.com/search.php?query=%E8%8C%99

Encodings

MD5:

31ab896f499362adb7b95172eac2e629

SHA1:

ea097a19496df790d29b8c891d36cdbfbebd5739

Base64:

6IyZ