Unicode Finder

"茄" U+8304(CJK UNIFIED IDEOGRAPH-8304)

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

Programming

C
\u8304
JavaScript
\u8304
Java
\u8304
Json
\u8304
Python
\u8304
Perl
\x{8304}
PHP
\x{8304}
Ruby
\u{8304}
Rust
\u{8304}
Go
\u8304

Web

CSS
\008304
HtmlDecimal
茄
HtmlHexadecimal
茄
Url
%E8%8C%84

Code

MD5
7d4b3e1d4472460b84d35cc0b21bb8fe
Sha1
01dcbac135bb3ffa72539132176967a72d71a65e
Base64
6IyE

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8304';
console.log(char);  // Output: 茄

Java:

char c = '\u8304';
System.out.println(c);  // Output: 茄

JSON:

{"text": "\u8304"}  // Value: 茄

Python:

char = '\u8304'
print(char)  # Output: 茄

Perl:

my $char = "\x{8304}";
print $char;  # Output: 茄

PHP:

$char = "\x{8304}";
echo $char;  // Output: 茄

Ruby:

char = "\u{8304}"
puts char  # Output: 茄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008304";  /* Display: 茄 */
}

HTML Decimal:

<p>HTML decimal: &#33540;</p>  <!-- Display: 茄 -->

HTML Hexadecimal:

<p>HTML hex: &#x8304;</p>  <!-- Display: 茄 -->

URL Encoding:

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

Encodings

MD5:

7d4b3e1d4472460b84d35cc0b21bb8fe

SHA1:

01dcbac135bb3ffa72539132176967a72d71a65e

Base64:

6IyE