Unicode Finder

"耳" U+8033(CJK UNIFIED IDEOGRAPH-8033)

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

Programming

C
\u8033
JavaScript
\u8033
Java
\u8033
Json
\u8033
Python
\u8033
Perl
\x{8033}
PHP
\x{8033}
Ruby
\u{8033}
Rust
\u{8033}
Go
\u8033

Web

CSS
\008033
HtmlDecimal
耳
HtmlHexadecimal
耳
Url
%E8%80%B3

Code

MD5
78e4f46b19a7eaf866315379b285e494
Sha1
8481effa10a79282d8a63ef7b7fae89968233779
Base64
6ICz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8033';
console.log(char);  // Output: 耳

Java:

char c = '\u8033';
System.out.println(c);  // Output: 耳

JSON:

{"text": "\u8033"}  // Value: 耳

Python:

char = '\u8033'
print(char)  # Output: 耳

Perl:

my $char = "\x{8033}";
print $char;  # Output: 耳

PHP:

$char = "\x{8033}";
echo $char;  // Output: 耳

Ruby:

char = "\u{8033}"
puts char  # Output: 耳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008033";  /* Display: 耳 */
}

HTML Decimal:

<p>HTML decimal: &#32819;</p>  <!-- Display: 耳 -->

HTML Hexadecimal:

<p>HTML hex: &#x8033;</p>  <!-- Display: 耳 -->

URL Encoding:

// 耳 URL encoding
https://unicodefinder.com/search.php?query=%E8%80%B3

Encodings

MD5:

78e4f46b19a7eaf866315379b285e494

SHA1:

8481effa10a79282d8a63ef7b7fae89968233779

Base64:

6ICz