Unicode Finder

"擟" U+64DF(CJK UNIFIED IDEOGRAPH-64DF)

U+64DF
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-64DF

Programming

C
\u64DF
JavaScript
\u64DF
Java
\u64DF
Json
\u64DF
Python
\u64DF
Perl
\x{64DF}
PHP
\x{64DF}
Ruby
\u{64DF}
Rust
\u{64DF}
Go
\u64DF

Web

CSS
\0064DF
HtmlDecimal
擟
HtmlHexadecimal
擟
Url
%E6%93%9F

Code

MD5
1cae394698dc1002d54584e21a5258b3
Sha1
809129465d2d82e5553b182f40ecde03009023fa
Base64
5pOf

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u64DF';
console.log(char);  // Output: 擟

Java:

char c = '\u64DF';
System.out.println(c);  // Output: 擟

JSON:

{"text": "\u64DF"}  // Value: 擟

Python:

char = '\u64DF'
print(char)  # Output: 擟

Perl:

my $char = "\x{64DF}";
print $char;  # Output: 擟

PHP:

$char = "\x{64DF}";
echo $char;  // Output: 擟

Ruby:

char = "\u{64DF}"
puts char  # Output: 擟

Rust:

let c = '\u{64DF}';
println!("{}", c);  // Output: 擟

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0064DF";  /* Display: 擟 */
}

HTML Decimal:

<p>HTML decimal: &#25823;</p>  <!-- Display: 擟 -->

HTML Hexadecimal:

<p>HTML hex: &#x64DF;</p>  <!-- Display: 擟 -->

URL Encoding:

// 擟 URL encoding
https://unicodefinder.com/search.php?query=%E6%93%9F

Encodings

MD5:

1cae394698dc1002d54584e21a5258b3

SHA1:

809129465d2d82e5553b182f40ecde03009023fa

Base64:

5pOf