Unicode Finder

"繤" U+7E64(CJK UNIFIED IDEOGRAPH-7E64)

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

Programming

C
\u7E64
JavaScript
\u7E64
Java
\u7E64
Json
\u7E64
Python
\u7E64
Perl
\x{7E64}
PHP
\x{7E64}
Ruby
\u{7E64}
Rust
\u{7E64}
Go
\u7E64

Web

CSS
\007E64
HtmlDecimal
繤
HtmlHexadecimal
繤
Url
%E7%B9%A4

Code

MD5
f41dc72a24ecb69bf9499e60d621a86e
Sha1
e7752d9434462aa6bd02ef4642e382f570e8f140
Base64
57mk

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7E64';
console.log(char);  // Output: 繤

Java:

char c = '\u7E64';
System.out.println(c);  // Output: 繤

JSON:

{"text": "\u7E64"}  // Value: 繤

Python:

char = '\u7E64'
print(char)  # Output: 繤

Perl:

my $char = "\x{7E64}";
print $char;  # Output: 繤

PHP:

$char = "\x{7E64}";
echo $char;  // Output: 繤

Ruby:

char = "\u{7E64}"
puts char  # Output: 繤

Rust:

let c = '\u{7E64}';
println!("{}", c);  // Output: 繤

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007E64";  /* Display: 繤 */
}

HTML Decimal:

<p>HTML decimal: &#32356;</p>  <!-- Display: 繤 -->

HTML Hexadecimal:

<p>HTML hex: &#x7E64;</p>  <!-- Display: 繤 -->

URL Encoding:

// 繤 URL encoding
https://unicodefinder.com/search.php?query=%E7%B9%A4

Encodings

MD5:

f41dc72a24ecb69bf9499e60d621a86e

SHA1:

e7752d9434462aa6bd02ef4642e382f570e8f140

Base64:

57mk