Unicode Finder

"茁" U+8301(CJK UNIFIED IDEOGRAPH-8301)

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

Programming

C
\u8301
JavaScript
\u8301
Java
\u8301
Json
\u8301
Python
\u8301
Perl
\x{8301}
PHP
\x{8301}
Ruby
\u{8301}
Rust
\u{8301}
Go
\u8301

Web

CSS
\008301
HtmlDecimal
茁
HtmlHexadecimal
茁
Url
%E8%8C%81

Code

MD5
a136f50b85cd4394e51ba352dbf8e5e5
Sha1
00c8d452bcd6ed6923be3c5209faed8387d3d8bf
Base64
6IyB

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8301';
console.log(char);  // Output: 茁

Java:

char c = '\u8301';
System.out.println(c);  // Output: 茁

JSON:

{"text": "\u8301"}  // Value: 茁

Python:

char = '\u8301'
print(char)  # Output: 茁

Perl:

my $char = "\x{8301}";
print $char;  # Output: 茁

PHP:

$char = "\x{8301}";
echo $char;  // Output: 茁

Ruby:

char = "\u{8301}"
puts char  # Output: 茁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008301";  /* Display: 茁 */
}

HTML Decimal:

<p>HTML decimal: &#33537;</p>  <!-- Display: 茁 -->

HTML Hexadecimal:

<p>HTML hex: &#x8301;</p>  <!-- Display: 茁 -->

URL Encoding:

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

Encodings

MD5:

a136f50b85cd4394e51ba352dbf8e5e5

SHA1:

00c8d452bcd6ed6923be3c5209faed8387d3d8bf

Base64:

6IyB