Unicode Finder

"穛" U+7A5B(CJK UNIFIED IDEOGRAPH-7A5B)

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

Programming

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

Web

CSS
\007A5B
HtmlDecimal
穛
HtmlHexadecimal
穛
Url
%E7%A9%9B

Code

MD5
a75a8469d4d4e9cd1741bad3f8b60d76
Sha1
905fdae7a7ac59cd5a7878da4bf81d61b6eb1c65
Base64
56mb

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7A5B';
console.log(char);  // Output: 穛

Java:

char c = '\u7A5B';
System.out.println(c);  // Output: 穛

JSON:

{"text": "\u7A5B"}  // Value: 穛

Python:

char = '\u7A5B'
print(char)  # Output: 穛

Perl:

my $char = "\x{7A5B}";
print $char;  # Output: 穛

PHP:

$char = "\x{7A5B}";
echo $char;  // Output: 穛

Ruby:

char = "\u{7A5B}"
puts char  # Output: 穛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31323;</p>  <!-- Display: 穛 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A5B;</p>  <!-- Display: 穛 -->

URL Encoding:

// 穛 URL encoding
https://unicodefinder.com/search.php?query=%E7%A9%9B

Encodings

MD5:

a75a8469d4d4e9cd1741bad3f8b60d76

SHA1:

905fdae7a7ac59cd5a7878da4bf81d61b6eb1c65

Base64:

56mb