Unicode Finder

"萒" U+8412(CJK UNIFIED IDEOGRAPH-8412)

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

Programming

C
\u8412
JavaScript
\u8412
Java
\u8412
Json
\u8412
Python
\u8412
Perl
\x{8412}
PHP
\x{8412}
Ruby
\u{8412}
Rust
\u{8412}
Go
\u8412

Web

CSS
\008412
HtmlDecimal
萒
HtmlHexadecimal
萒
Url
%E8%90%92

Code

MD5
944040c6a4057120e599379093cd583d
Sha1
fc28a61aa74cb55d7ce6e9524f8b04f907540a9e
Base64
6JCS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8412';
console.log(char);  // Output: 萒

Java:

char c = '\u8412';
System.out.println(c);  // Output: 萒

JSON:

{"text": "\u8412"}  // Value: 萒

Python:

char = '\u8412'
print(char)  # Output: 萒

Perl:

my $char = "\x{8412}";
print $char;  # Output: 萒

PHP:

$char = "\x{8412}";
echo $char;  // Output: 萒

Ruby:

char = "\u{8412}"
puts char  # Output: 萒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008412";  /* Display: 萒 */
}

HTML Decimal:

<p>HTML decimal: &#33810;</p>  <!-- Display: 萒 -->

HTML Hexadecimal:

<p>HTML hex: &#x8412;</p>  <!-- Display: 萒 -->

URL Encoding:

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

Encodings

MD5:

944040c6a4057120e599379093cd583d

SHA1:

fc28a61aa74cb55d7ce6e9524f8b04f907540a9e

Base64:

6JCS