Unicode Finder

"茲" U+8332(CJK UNIFIED IDEOGRAPH-8332)

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

Programming

C
\u8332
JavaScript
\u8332
Java
\u8332
Json
\u8332
Python
\u8332
Perl
\x{8332}
PHP
\x{8332}
Ruby
\u{8332}
Rust
\u{8332}
Go
\u8332

Web

CSS
\008332
HtmlDecimal
茲
HtmlHexadecimal
茲
Url
%E8%8C%B2

Code

MD5
1b17667ceeb333549cb41ca850fe2d91
Sha1
d45e55b04850dc85f0d8c881f045f00357c54509
Base64
6Iyy

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8332';
console.log(char);  // Output: 茲

Java:

char c = '\u8332';
System.out.println(c);  // Output: 茲

JSON:

{"text": "\u8332"}  // Value: 茲

Python:

char = '\u8332'
print(char)  # Output: 茲

Perl:

my $char = "\x{8332}";
print $char;  # Output: 茲

PHP:

$char = "\x{8332}";
echo $char;  // Output: 茲

Ruby:

char = "\u{8332}"
puts char  # Output: 茲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008332";  /* Display: 茲 */
}

HTML Decimal:

<p>HTML decimal: &#33586;</p>  <!-- Display: 茲 -->

HTML Hexadecimal:

<p>HTML hex: &#x8332;</p>  <!-- Display: 茲 -->

URL Encoding:

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

Encodings

MD5:

1b17667ceeb333549cb41ca850fe2d91

SHA1:

d45e55b04850dc85f0d8c881f045f00357c54509

Base64:

6Iyy