Unicode Finder

"擏" U+64CF(CJK UNIFIED IDEOGRAPH-64CF)

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

Programming

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

Web

CSS
\0064CF
HtmlDecimal
擏
HtmlHexadecimal
擏
Url
%E6%93%8F

Code

MD5
3650b347debbc8e73c1d9187f0748d19
Sha1
a68ab9c0eaaeed2bdc924c22a11d0f8115f3bfa6
Base64
5pOP

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u64CF';
console.log(char);  // Output: 擏

Java:

char c = '\u64CF';
System.out.println(c);  // Output: 擏

JSON:

{"text": "\u64CF"}  // Value: 擏

Python:

char = '\u64CF'
print(char)  # Output: 擏

Perl:

my $char = "\x{64CF}";
print $char;  # Output: 擏

PHP:

$char = "\x{64CF}";
echo $char;  // Output: 擏

Ruby:

char = "\u{64CF}"
puts char  # Output: 擏

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25807;</p>  <!-- Display: 擏 -->

HTML Hexadecimal:

<p>HTML hex: &#x64CF;</p>  <!-- Display: 擏 -->

URL Encoding:

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

Encodings

MD5:

3650b347debbc8e73c1d9187f0748d19

SHA1:

a68ab9c0eaaeed2bdc924c22a11d0f8115f3bfa6

Base64:

5pOP