Unicode Finder

"撯" U+64AF(CJK UNIFIED IDEOGRAPH-64AF)

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

Programming

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

Web

CSS
\0064AF
HtmlDecimal
撯
HtmlHexadecimal
撯
Url
%E6%92%AF

Code

MD5
5492904a6af57aed5a80708eb9598dea
Sha1
1136c2369ef8013b8a447013213bdd159cf6f372
Base64
5pKv

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u64AF';
console.log(char);  // Output: 撯

Java:

char c = '\u64AF';
System.out.println(c);  // Output: 撯

JSON:

{"text": "\u64AF"}  // Value: 撯

Python:

char = '\u64AF'
print(char)  # Output: 撯

Perl:

my $char = "\x{64AF}";
print $char;  # Output: 撯

PHP:

$char = "\x{64AF}";
echo $char;  // Output: 撯

Ruby:

char = "\u{64AF}"
puts char  # Output: 撯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25775;</p>  <!-- Display: 撯 -->

HTML Hexadecimal:

<p>HTML hex: &#x64AF;</p>  <!-- Display: 撯 -->

URL Encoding:

// 撯 URL encoding
https://unicodefinder.com/search.php?query=%E6%92%AF

Encodings

MD5:

5492904a6af57aed5a80708eb9598dea

SHA1:

1136c2369ef8013b8a447013213bdd159cf6f372

Base64:

5pKv