Unicode Finder

"萇" U+8407(CJK UNIFIED IDEOGRAPH-8407)

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

Programming

C
\u8407
JavaScript
\u8407
Java
\u8407
Json
\u8407
Python
\u8407
Perl
\x{8407}
PHP
\x{8407}
Ruby
\u{8407}
Rust
\u{8407}
Go
\u8407

Web

CSS
\008407
HtmlDecimal
萇
HtmlHexadecimal
萇
Url
%E8%90%87

Code

MD5
8b7865a0d35ad0b7627a94c1104ab098
Sha1
d3205576e9a9971fbfcdc0832fc25a611e78f81e
Base64
6JCH

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8407';
console.log(char);  // Output: 萇

Java:

char c = '\u8407';
System.out.println(c);  // Output: 萇

JSON:

{"text": "\u8407"}  // Value: 萇

Python:

char = '\u8407'
print(char)  # Output: 萇

Perl:

my $char = "\x{8407}";
print $char;  # Output: 萇

PHP:

$char = "\x{8407}";
echo $char;  // Output: 萇

Ruby:

char = "\u{8407}"
puts char  # Output: 萇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008407";  /* Display: 萇 */
}

HTML Decimal:

<p>HTML decimal: &#33799;</p>  <!-- Display: 萇 -->

HTML Hexadecimal:

<p>HTML hex: &#x8407;</p>  <!-- Display: 萇 -->

URL Encoding:

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

Encodings

MD5:

8b7865a0d35ad0b7627a94c1104ab098

SHA1:

d3205576e9a9971fbfcdc0832fc25a611e78f81e

Base64:

6JCH