Unicode Finder

"莙" U+8399(CJK UNIFIED IDEOGRAPH-8399)

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

Programming

C
\u8399
JavaScript
\u8399
Java
\u8399
Json
\u8399
Python
\u8399
Perl
\x{8399}
PHP
\x{8399}
Ruby
\u{8399}
Rust
\u{8399}
Go
\u8399

Web

CSS
\008399
HtmlDecimal
莙
HtmlHexadecimal
莙
Url
%E8%8E%99

Code

MD5
45fa016530c88c22396b60441451042a
Sha1
6cea461e0e59fe6d4144ccb2f6ee1941e890745f
Base64
6I6Z

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8399';
console.log(char);  // Output: 莙

Java:

char c = '\u8399';
System.out.println(c);  // Output: 莙

JSON:

{"text": "\u8399"}  // Value: 莙

Python:

char = '\u8399'
print(char)  # Output: 莙

Perl:

my $char = "\x{8399}";
print $char;  # Output: 莙

PHP:

$char = "\x{8399}";
echo $char;  // Output: 莙

Ruby:

char = "\u{8399}"
puts char  # Output: 莙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008399";  /* Display: 莙 */
}

HTML Decimal:

<p>HTML decimal: &#33689;</p>  <!-- Display: 莙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8399;</p>  <!-- Display: 莙 -->

URL Encoding:

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

Encodings

MD5:

45fa016530c88c22396b60441451042a

SHA1:

6cea461e0e59fe6d4144ccb2f6ee1941e890745f

Base64:

6I6Z