Unicode Finder

"茢" U+8322(CJK UNIFIED IDEOGRAPH-8322)

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

Programming

C
\u8322
JavaScript
\u8322
Java
\u8322
Json
\u8322
Python
\u8322
Perl
\x{8322}
PHP
\x{8322}
Ruby
\u{8322}
Rust
\u{8322}
Go
\u8322

Web

CSS
\008322
HtmlDecimal
茢
HtmlHexadecimal
茢
Url
%E8%8C%A2

Code

MD5
e8fdf0908f5f72aa8de7343c5c38b82c
Sha1
09dbb2ab55c7f5b0890c1e3ccf404f84bb507b55
Base64
6Iyi

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8322';
console.log(char);  // Output: 茢

Java:

char c = '\u8322';
System.out.println(c);  // Output: 茢

JSON:

{"text": "\u8322"}  // Value: 茢

Python:

char = '\u8322'
print(char)  # Output: 茢

Perl:

my $char = "\x{8322}";
print $char;  # Output: 茢

PHP:

$char = "\x{8322}";
echo $char;  // Output: 茢

Ruby:

char = "\u{8322}"
puts char  # Output: 茢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008322";  /* Display: 茢 */
}

HTML Decimal:

<p>HTML decimal: &#33570;</p>  <!-- Display: 茢 -->

HTML Hexadecimal:

<p>HTML hex: &#x8322;</p>  <!-- Display: 茢 -->

URL Encoding:

// 茢 URL encoding
https://unicodefinder.com/search.php?query=%E8%8C%A2

Encodings

MD5:

e8fdf0908f5f72aa8de7343c5c38b82c

SHA1:

09dbb2ab55c7f5b0890c1e3ccf404f84bb507b55

Base64:

6Iyi