Unicode Finder

"葖" U+8456(CJK UNIFIED IDEOGRAPH-8456)

U+8456
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8456

Programming

C
\u8456
JavaScript
\u8456
Java
\u8456
Json
\u8456
Python
\u8456
Perl
\x{8456}
PHP
\x{8456}
Ruby
\u{8456}
Rust
\u{8456}
Go
\u8456

Web

CSS
\008456
HtmlDecimal
葖
HtmlHexadecimal
葖
Url
%E8%91%96

Code

MD5
7ec8441a931b4f3b9dd585940e8868b9
Sha1
c754478cfe22cf1de8f890bb068ba458e892545c
Base64
6JGW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8456';
console.log(char);  // Output: 葖

Java:

char c = '\u8456';
System.out.println(c);  // Output: 葖

JSON:

{"text": "\u8456"}  // Value: 葖

Python:

char = '\u8456'
print(char)  # Output: 葖

Perl:

my $char = "\x{8456}";
print $char;  # Output: 葖

PHP:

$char = "\x{8456}";
echo $char;  // Output: 葖

Ruby:

char = "\u{8456}"
puts char  # Output: 葖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008456";  /* Display: 葖 */
}

HTML Decimal:

<p>HTML decimal: &#33878;</p>  <!-- Display: 葖 -->

HTML Hexadecimal:

<p>HTML hex: &#x8456;</p>  <!-- Display: 葖 -->

URL Encoding:

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

Encodings

MD5:

7ec8441a931b4f3b9dd585940e8868b9

SHA1:

c754478cfe22cf1de8f890bb068ba458e892545c

Base64:

6JGW