Unicode Finder

"擄" U+64C4(CJK UNIFIED IDEOGRAPH-64C4)

U+64C4
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-64C4

Programming

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

Web

CSS
\0064C4
HtmlDecimal
擄
HtmlHexadecimal
擄
Url
%E6%93%84

Code

MD5
30a5cad75a109894a56fe92414b67eb4
Sha1
f229e178fa82fa09d1224e51ac939594b9f2f52e
Base64
5pOE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u64C4';
console.log(char);  // Output: 擄

Java:

char c = '\u64C4';
System.out.println(c);  // Output: 擄

JSON:

{"text": "\u64C4"}  // Value: 擄

Python:

char = '\u64C4'
print(char)  # Output: 擄

Perl:

my $char = "\x{64C4}";
print $char;  # Output: 擄

PHP:

$char = "\x{64C4}";
echo $char;  // Output: 擄

Ruby:

char = "\u{64C4}"
puts char  # Output: 擄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25796;</p>  <!-- Display: 擄 -->

HTML Hexadecimal:

<p>HTML hex: &#x64C4;</p>  <!-- Display: 擄 -->

URL Encoding:

// 擄 URL encoding
https://unicodefinder.com/search.php?query=%E6%93%84

Encodings

MD5:

30a5cad75a109894a56fe92414b67eb4

SHA1:

f229e178fa82fa09d1224e51ac939594b9f2f52e

Base64:

5pOE