Unicode Finder

"早" U+65E9(CJK UNIFIED IDEOGRAPH-65E9)

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

Programming

C
\u65E9
JavaScript
\u65E9
Java
\u65E9
Json
\u65E9
Python
\u65E9
Perl
\x{65E9}
PHP
\x{65E9}
Ruby
\u{65E9}
Rust
\u{65E9}
Go
\u65E9

Web

CSS
\0065E9
HtmlDecimal
早
HtmlHexadecimal
早
Url
%E6%97%A9

Code

MD5
d6cb15b9a68003b513698f45d22a0620
Sha1
13a8589339d9223d3e4f0ff4eb9888cba3981435
Base64
5pep

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u65E9';
console.log(char);  // Output: 早

Java:

char c = '\u65E9';
System.out.println(c);  // Output: 早

JSON:

{"text": "\u65E9"}  // Value: 早

Python:

char = '\u65E9'
print(char)  # Output: 早

Perl:

my $char = "\x{65E9}";
print $char;  # Output: 早

PHP:

$char = "\x{65E9}";
echo $char;  // Output: 早

Ruby:

char = "\u{65E9}"
puts char  # Output: 早

Rust:

let c = '\u{65E9}';
println!("{}", c);  // Output: 早

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0065E9";  /* Display: 早 */
}

HTML Decimal:

<p>HTML decimal: &#26089;</p>  <!-- Display: 早 -->

HTML Hexadecimal:

<p>HTML hex: &#x65E9;</p>  <!-- Display: 早 -->

URL Encoding:

// 早 URL encoding
https://unicodefinder.com/search.php?query=%E6%97%A9

Encodings

MD5:

d6cb15b9a68003b513698f45d22a0620

SHA1:

13a8589339d9223d3e4f0ff4eb9888cba3981435

Base64:

5pep