Unicode Finder

"萃" U+8403(CJK UNIFIED IDEOGRAPH-8403)

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

Programming

C
\u8403
JavaScript
\u8403
Java
\u8403
Json
\u8403
Python
\u8403
Perl
\x{8403}
PHP
\x{8403}
Ruby
\u{8403}
Rust
\u{8403}
Go
\u8403

Web

CSS
\008403
HtmlDecimal
萃
HtmlHexadecimal
萃
Url
%E8%90%83

Code

MD5
98790160de5440ec1de405c794bc3f81
Sha1
6007d2991642818132126121f72ccb426e5a0c87
Base64
6JCD

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8403';
console.log(char);  // Output: 萃

Java:

char c = '\u8403';
System.out.println(c);  // Output: 萃

JSON:

{"text": "\u8403"}  // Value: 萃

Python:

char = '\u8403'
print(char)  # Output: 萃

Perl:

my $char = "\x{8403}";
print $char;  # Output: 萃

PHP:

$char = "\x{8403}";
echo $char;  // Output: 萃

Ruby:

char = "\u{8403}"
puts char  # Output: 萃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008403";  /* Display: 萃 */
}

HTML Decimal:

<p>HTML decimal: &#33795;</p>  <!-- Display: 萃 -->

HTML Hexadecimal:

<p>HTML hex: &#x8403;</p>  <!-- Display: 萃 -->

URL Encoding:

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

Encodings

MD5:

98790160de5440ec1de405c794bc3f81

SHA1:

6007d2991642818132126121f72ccb426e5a0c87

Base64:

6JCD