Unicode Finder

"晚" U+665A(CJK UNIFIED IDEOGRAPH-665A)

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

Programming

C
\u665A
JavaScript
\u665A
Java
\u665A
Json
\u665A
Python
\u665A
Perl
\x{665A}
PHP
\x{665A}
Ruby
\u{665A}
Rust
\u{665A}
Go
\u665A

Web

CSS
\00665A
HtmlDecimal
晚
HtmlHexadecimal
晚
Url
%E6%99%9A

Code

MD5
9299aa7acaed622c3be491a7f79b1140
Sha1
7c0f7ec0504703158db8c047be73512dea91b323
Base64
5pma

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u665A';
console.log(char);  // Output: 晚

Java:

char c = '\u665A';
System.out.println(c);  // Output: 晚

JSON:

{"text": "\u665A"}  // Value: 晚

Python:

char = '\u665A'
print(char)  # Output: 晚

Perl:

my $char = "\x{665A}";
print $char;  # Output: 晚

PHP:

$char = "\x{665A}";
echo $char;  // Output: 晚

Ruby:

char = "\u{665A}"
puts char  # Output: 晚

Rust:

let c = '\u{665A}';
println!("{}", c);  // Output: 晚

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00665A";  /* Display: 晚 */
}

HTML Decimal:

<p>HTML decimal: &#26202;</p>  <!-- Display: 晚 -->

HTML Hexadecimal:

<p>HTML hex: &#x665A;</p>  <!-- Display: 晚 -->

URL Encoding:

// 晚 URL encoding
https://unicodefinder.com/search.php?query=%E6%99%9A

Encodings

MD5:

9299aa7acaed622c3be491a7f79b1140

SHA1:

7c0f7ec0504703158db8c047be73512dea91b323

Base64:

5pma