Unicode Finder

"饤" U+9964(CJK UNIFIED IDEOGRAPH-9964)

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

Programming

C
\u9964
JavaScript
\u9964
Java
\u9964
Json
\u9964
Python
\u9964
Perl
\x{9964}
PHP
\x{9964}
Ruby
\u{9964}
Rust
\u{9964}
Go
\u9964

Web

CSS
\009964
HtmlDecimal
饤
HtmlHexadecimal
饤
Url
%E9%A5%A4

Code

MD5
07f630f39c9a4e05921b2362136e5692
Sha1
e00ff8399645b8e2226c7529b1f798fd97bc5da6
Base64
6aWk

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u9964';
console.log(char);  // Output: 饤

Java:

char c = '\u9964';
System.out.println(c);  // Output: 饤

JSON:

{"text": "\u9964"}  // Value: 饤

Python:

char = '\u9964'
print(char)  # Output: 饤

Perl:

my $char = "\x{9964}";
print $char;  # Output: 饤

PHP:

$char = "\x{9964}";
echo $char;  // Output: 饤

Ruby:

char = "\u{9964}"
puts char  # Output: 饤

Rust:

let c = '\u{9964}';
println!("{}", c);  // Output: 饤

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009964";  /* Display: 饤 */
}

HTML Decimal:

<p>HTML decimal: &#39268;</p>  <!-- Display: 饤 -->

HTML Hexadecimal:

<p>HTML hex: &#x9964;</p>  <!-- Display: 饤 -->

URL Encoding:

// 饤 URL encoding
https://unicodefinder.com/search.php?query=%E9%A5%A4

Encodings

MD5:

07f630f39c9a4e05921b2362136e5692

SHA1:

e00ff8399645b8e2226c7529b1f798fd97bc5da6

Base64:

6aWk