Unicode Finder

"萗" U+8417(CJK UNIFIED IDEOGRAPH-8417)

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

Programming

C
\u8417
JavaScript
\u8417
Java
\u8417
Json
\u8417
Python
\u8417
Perl
\x{8417}
PHP
\x{8417}
Ruby
\u{8417}
Rust
\u{8417}
Go
\u8417

Web

CSS
\008417
HtmlDecimal
萗
HtmlHexadecimal
萗
Url
%E8%90%97

Code

MD5
6f954a54113543a109f4e82858c0228c
Sha1
2690fcddbcd2ead607af6ce0b55f09b29a2de053
Base64
6JCX

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8417';
console.log(char);  // Output: 萗

Java:

char c = '\u8417';
System.out.println(c);  // Output: 萗

JSON:

{"text": "\u8417"}  // Value: 萗

Python:

char = '\u8417'
print(char)  # Output: 萗

Perl:

my $char = "\x{8417}";
print $char;  # Output: 萗

PHP:

$char = "\x{8417}";
echo $char;  // Output: 萗

Ruby:

char = "\u{8417}"
puts char  # Output: 萗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008417";  /* Display: 萗 */
}

HTML Decimal:

<p>HTML decimal: &#33815;</p>  <!-- Display: 萗 -->

HTML Hexadecimal:

<p>HTML hex: &#x8417;</p>  <!-- Display: 萗 -->

URL Encoding:

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

Encodings

MD5:

6f954a54113543a109f4e82858c0228c

SHA1:

2690fcddbcd2ead607af6ce0b55f09b29a2de053

Base64:

6JCX