Unicode Finder

"茡" U+8321(CJK UNIFIED IDEOGRAPH-8321)

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

Programming

C
\u8321
JavaScript
\u8321
Java
\u8321
Json
\u8321
Python
\u8321
Perl
\x{8321}
PHP
\x{8321}
Ruby
\u{8321}
Rust
\u{8321}
Go
\u8321

Web

CSS
\008321
HtmlDecimal
茡
HtmlHexadecimal
茡
Url
%E8%8C%A1

Code

MD5
f5a0b898bfdef806daec08efb80201f3
Sha1
172cfcb4732110b2186f5d457d07cb01270637bb
Base64
6Iyh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8321';
console.log(char);  // Output: 茡

Java:

char c = '\u8321';
System.out.println(c);  // Output: 茡

JSON:

{"text": "\u8321"}  // Value: 茡

Python:

char = '\u8321'
print(char)  # Output: 茡

Perl:

my $char = "\x{8321}";
print $char;  # Output: 茡

PHP:

$char = "\x{8321}";
echo $char;  // Output: 茡

Ruby:

char = "\u{8321}"
puts char  # Output: 茡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008321";  /* Display: 茡 */
}

HTML Decimal:

<p>HTML decimal: &#33569;</p>  <!-- Display: 茡 -->

HTML Hexadecimal:

<p>HTML hex: &#x8321;</p>  <!-- Display: 茡 -->

URL Encoding:

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

Encodings

MD5:

f5a0b898bfdef806daec08efb80201f3

SHA1:

172cfcb4732110b2186f5d457d07cb01270637bb

Base64:

6Iyh