Unicode Finder

"撱" U+64B1(CJK UNIFIED IDEOGRAPH-64B1)

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

Programming

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

Web

CSS
\0064B1
HtmlDecimal
撱
HtmlHexadecimal
撱
Url
%E6%92%B1

Code

MD5
2ac13f9a5ac67688de2a5274b898aede
Sha1
cc63b814ca4d08b6b54ad0f75cd95abc59574210
Base64
5pKx

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u64B1';
console.log(char);  // Output: 撱

Java:

char c = '\u64B1';
System.out.println(c);  // Output: 撱

JSON:

{"text": "\u64B1"}  // Value: 撱

Python:

char = '\u64B1'
print(char)  # Output: 撱

Perl:

my $char = "\x{64B1}";
print $char;  # Output: 撱

PHP:

$char = "\x{64B1}";
echo $char;  // Output: 撱

Ruby:

char = "\u{64B1}"
puts char  # Output: 撱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25777;</p>  <!-- Display: 撱 -->

HTML Hexadecimal:

<p>HTML hex: &#x64B1;</p>  <!-- Display: 撱 -->

URL Encoding:

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

Encodings

MD5:

2ac13f9a5ac67688de2a5274b898aede

SHA1:

cc63b814ca4d08b6b54ad0f75cd95abc59574210

Base64:

5pKx