Unicode Finder

"旞" U+65DE(CJK UNIFIED IDEOGRAPH-65DE)

U+65DE
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-65DE

Programming

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

Web

CSS
\0065DE
HtmlDecimal
旞
HtmlHexadecimal
旞
Url
%E6%97%9E

Code

MD5
24e0c458ca0ed3f3212922b0ef2a505f
Sha1
f074985b36b85474b8d1f827c431cf1cbbb2afd8
Base64
5pee

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u65DE';
console.log(char);  // Output: 旞

Java:

char c = '\u65DE';
System.out.println(c);  // Output: 旞

JSON:

{"text": "\u65DE"}  // Value: 旞

Python:

char = '\u65DE'
print(char)  # Output: 旞

Perl:

my $char = "\x{65DE}";
print $char;  # Output: 旞

PHP:

$char = "\x{65DE}";
echo $char;  // Output: 旞

Ruby:

char = "\u{65DE}"
puts char  # Output: 旞

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#26078;</p>  <!-- Display: 旞 -->

HTML Hexadecimal:

<p>HTML hex: &#x65DE;</p>  <!-- Display: 旞 -->

URL Encoding:

// 旞 URL encoding
https://unicodefinder.com/search.php?query=%E6%97%9E

Encodings

MD5:

24e0c458ca0ed3f3212922b0ef2a505f

SHA1:

f074985b36b85474b8d1f827c431cf1cbbb2afd8

Base64:

5pee