Unicode Finder

"敊" U+654A(CJK UNIFIED IDEOGRAPH-654A)

U+654A
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-654A

Programming

C
\u654A
JavaScript
\u654A
Java
\u654A
Json
\u654A
Python
\u654A
Perl
\x{654A}
PHP
\x{654A}
Ruby
\u{654A}
Rust
\u{654A}
Go
\u654A

Web

CSS
\00654A
HtmlDecimal
敊
HtmlHexadecimal
敊
Url
%E6%95%8A

Code

MD5
0f82546490c05177b564e55f8019fb90
Sha1
63085f0c4096ba79cb60705c0ac0cf30180ad1ee
Base64
5pWK

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u654A';
console.log(char);  // Output: 敊

Java:

char c = '\u654A';
System.out.println(c);  // Output: 敊

JSON:

{"text": "\u654A"}  // Value: 敊

Python:

char = '\u654A'
print(char)  # Output: 敊

Perl:

my $char = "\x{654A}";
print $char;  # Output: 敊

PHP:

$char = "\x{654A}";
echo $char;  // Output: 敊

Ruby:

char = "\u{654A}"
puts char  # Output: 敊

Rust:

let c = '\u{654A}';
println!("{}", c);  // Output: 敊

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00654A";  /* Display: 敊 */
}

HTML Decimal:

<p>HTML decimal: &#25930;</p>  <!-- Display: 敊 -->

HTML Hexadecimal:

<p>HTML hex: &#x654A;</p>  <!-- Display: 敊 -->

URL Encoding:

// 敊 URL encoding
https://unicodefinder.com/search.php?query=%E6%95%8A

Encodings

MD5:

0f82546490c05177b564e55f8019fb90

SHA1:

63085f0c4096ba79cb60705c0ac0cf30180ad1ee

Base64:

5pWK