Unicode Finder

"茂" U+8302(CJK UNIFIED IDEOGRAPH-8302)

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

Programming

C
\u8302
JavaScript
\u8302
Java
\u8302
Json
\u8302
Python
\u8302
Perl
\x{8302}
PHP
\x{8302}
Ruby
\u{8302}
Rust
\u{8302}
Go
\u8302

Web

CSS
\008302
HtmlDecimal
茂
HtmlHexadecimal
茂
Url
%E8%8C%82

Code

MD5
47525f6391f200c77590cc63abf546ac
Sha1
6e1073dcf28da74c5bc1d3b94543886a3c776922
Base64
6IyC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8302';
console.log(char);  // Output: 茂

Java:

char c = '\u8302';
System.out.println(c);  // Output: 茂

JSON:

{"text": "\u8302"}  // Value: 茂

Python:

char = '\u8302'
print(char)  # Output: 茂

Perl:

my $char = "\x{8302}";
print $char;  # Output: 茂

PHP:

$char = "\x{8302}";
echo $char;  // Output: 茂

Ruby:

char = "\u{8302}"
puts char  # Output: 茂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008302";  /* Display: 茂 */
}

HTML Decimal:

<p>HTML decimal: &#33538;</p>  <!-- Display: 茂 -->

HTML Hexadecimal:

<p>HTML hex: &#x8302;</p>  <!-- Display: 茂 -->

URL Encoding:

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

Encodings

MD5:

47525f6391f200c77590cc63abf546ac

SHA1:

6e1073dcf28da74c5bc1d3b94543886a3c776922

Base64:

6IyC