Unicode Finder

"萉" U+8409(CJK UNIFIED IDEOGRAPH-8409)

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

Programming

C
\u8409
JavaScript
\u8409
Java
\u8409
Json
\u8409
Python
\u8409
Perl
\x{8409}
PHP
\x{8409}
Ruby
\u{8409}
Rust
\u{8409}
Go
\u8409

Web

CSS
\008409
HtmlDecimal
萉
HtmlHexadecimal
萉
Url
%E8%90%89

Code

MD5
1feb3bea785dee4d94352887bcb1c5af
Sha1
ea7840fd8861e70aac53db29d11a8c1f4d960e39
Base64
6JCJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8409';
console.log(char);  // Output: 萉

Java:

char c = '\u8409';
System.out.println(c);  // Output: 萉

JSON:

{"text": "\u8409"}  // Value: 萉

Python:

char = '\u8409'
print(char)  # Output: 萉

Perl:

my $char = "\x{8409}";
print $char;  # Output: 萉

PHP:

$char = "\x{8409}";
echo $char;  // Output: 萉

Ruby:

char = "\u{8409}"
puts char  # Output: 萉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008409";  /* Display: 萉 */
}

HTML Decimal:

<p>HTML decimal: &#33801;</p>  <!-- Display: 萉 -->

HTML Hexadecimal:

<p>HTML hex: &#x8409;</p>  <!-- Display: 萉 -->

URL Encoding:

// 萉 URL encoding
https://unicodefinder.com/search.php?query=%E8%90%89

Encodings

MD5:

1feb3bea785dee4d94352887bcb1c5af

SHA1:

ea7840fd8861e70aac53db29d11a8c1f4d960e39

Base64:

6JCJ