Unicode Finder

"茨" U+8328(CJK UNIFIED IDEOGRAPH-8328)

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

Programming

C
\u8328
JavaScript
\u8328
Java
\u8328
Json
\u8328
Python
\u8328
Perl
\x{8328}
PHP
\x{8328}
Ruby
\u{8328}
Rust
\u{8328}
Go
\u8328

Web

CSS
\008328
HtmlDecimal
茨
HtmlHexadecimal
茨
Url
%E8%8C%A8

Code

MD5
eae891a3fc82c81aa676baa6290b062c
Sha1
88026d2940409c2c2866514289afa8abf807d874
Base64
6Iyo

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8328';
console.log(char);  // Output: 茨

Java:

char c = '\u8328';
System.out.println(c);  // Output: 茨

JSON:

{"text": "\u8328"}  // Value: 茨

Python:

char = '\u8328'
print(char)  # Output: 茨

Perl:

my $char = "\x{8328}";
print $char;  # Output: 茨

PHP:

$char = "\x{8328}";
echo $char;  // Output: 茨

Ruby:

char = "\u{8328}"
puts char  # Output: 茨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008328";  /* Display: 茨 */
}

HTML Decimal:

<p>HTML decimal: &#33576;</p>  <!-- Display: 茨 -->

HTML Hexadecimal:

<p>HTML hex: &#x8328;</p>  <!-- Display: 茨 -->

URL Encoding:

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

Encodings

MD5:

eae891a3fc82c81aa676baa6290b062c

SHA1:

88026d2940409c2c2866514289afa8abf807d874

Base64:

6Iyo