Unicode Finder

"葀" U+8440(CJK UNIFIED IDEOGRAPH-8440)

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

Programming

C
\u8440
JavaScript
\u8440
Java
\u8440
Json
\u8440
Python
\u8440
Perl
\x{8440}
PHP
\x{8440}
Ruby
\u{8440}
Rust
\u{8440}
Go
\u8440

Web

CSS
\008440
HtmlDecimal
葀
HtmlHexadecimal
葀
Url
%E8%91%80

Code

MD5
d0c2950936d5c26b5d3225bdd330e709
Sha1
b9fc5bb61b3af4a4429363be9d6d9173a702494c
Base64
6JGA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8440';
console.log(char);  // Output: 葀

Java:

char c = '\u8440';
System.out.println(c);  // Output: 葀

JSON:

{"text": "\u8440"}  // Value: 葀

Python:

char = '\u8440'
print(char)  # Output: 葀

Perl:

my $char = "\x{8440}";
print $char;  # Output: 葀

PHP:

$char = "\x{8440}";
echo $char;  // Output: 葀

Ruby:

char = "\u{8440}"
puts char  # Output: 葀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008440";  /* Display: 葀 */
}

HTML Decimal:

<p>HTML decimal: &#33856;</p>  <!-- Display: 葀 -->

HTML Hexadecimal:

<p>HTML hex: &#x8440;</p>  <!-- Display: 葀 -->

URL Encoding:

// 葀 URL encoding
https://unicodefinder.com/search.php?query=%E8%91%80

Encodings

MD5:

d0c2950936d5c26b5d3225bdd330e709

SHA1:

b9fc5bb61b3af4a4429363be9d6d9173a702494c

Base64:

6JGA