Unicode Finder

"旤" U+65E4(CJK UNIFIED IDEOGRAPH-65E4)

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

Programming

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

Web

CSS
\0065E4
HtmlDecimal
旤
HtmlHexadecimal
旤
Url
%E6%97%A4

Code

MD5
47888eb039d909ac619ff8c8b36e8ce3
Sha1
03f580c74f1651f11e1a946f7b20ef9b5a408fd9
Base64
5pek

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u65E4';
console.log(char);  // Output: 旤

Java:

char c = '\u65E4';
System.out.println(c);  // Output: 旤

JSON:

{"text": "\u65E4"}  // Value: 旤

Python:

char = '\u65E4'
print(char)  # Output: 旤

Perl:

my $char = "\x{65E4}";
print $char;  # Output: 旤

PHP:

$char = "\x{65E4}";
echo $char;  // Output: 旤

Ruby:

char = "\u{65E4}"
puts char  # Output: 旤

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26084;</p>  <!-- Display: 旤 -->

HTML Hexadecimal:

<p>HTML hex: &#x65E4;</p>  <!-- Display: 旤 -->

URL Encoding:

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

Encodings

MD5:

47888eb039d909ac619ff8c8b36e8ce3

SHA1:

03f580c74f1651f11e1a946f7b20ef9b5a408fd9

Base64:

5pek