Unicode Finder

"葂" U+8442(CJK UNIFIED IDEOGRAPH-8442)

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

Programming

C
\u8442
JavaScript
\u8442
Java
\u8442
Json
\u8442
Python
\u8442
Perl
\x{8442}
PHP
\x{8442}
Ruby
\u{8442}
Rust
\u{8442}
Go
\u8442

Web

CSS
\008442
HtmlDecimal
葂
HtmlHexadecimal
葂
Url
%E8%91%82

Code

MD5
4b9b402141cdfa1666db8807af969151
Sha1
f2522e4bd72fd85a9cb087e68d2de274b698199c
Base64
6JGC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8442';
console.log(char);  // Output: 葂

Java:

char c = '\u8442';
System.out.println(c);  // Output: 葂

JSON:

{"text": "\u8442"}  // Value: 葂

Python:

char = '\u8442'
print(char)  # Output: 葂

Perl:

my $char = "\x{8442}";
print $char;  # Output: 葂

PHP:

$char = "\x{8442}";
echo $char;  // Output: 葂

Ruby:

char = "\u{8442}"
puts char  # Output: 葂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008442";  /* Display: 葂 */
}

HTML Decimal:

<p>HTML decimal: &#33858;</p>  <!-- Display: 葂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8442;</p>  <!-- Display: 葂 -->

URL Encoding:

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

Encodings

MD5:

4b9b402141cdfa1666db8807af969151

SHA1:

f2522e4bd72fd85a9cb087e68d2de274b698199c

Base64:

6JGC