Unicode Finder

"穝" U+7A5D(CJK UNIFIED IDEOGRAPH-7A5D)

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

Programming

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

Web

CSS
\007A5D
HtmlDecimal
穝
HtmlHexadecimal
穝
Url
%E7%A9%9D

Code

MD5
05b0552f0227fc408080239311c6c045
Sha1
6a15b97aeccbbb8b8ef49ae1393db452e5ecaa61
Base64
56md

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7A5D';
console.log(char);  // Output: 穝

Java:

char c = '\u7A5D';
System.out.println(c);  // Output: 穝

JSON:

{"text": "\u7A5D"}  // Value: 穝

Python:

char = '\u7A5D'
print(char)  # Output: 穝

Perl:

my $char = "\x{7A5D}";
print $char;  # Output: 穝

PHP:

$char = "\x{7A5D}";
echo $char;  // Output: 穝

Ruby:

char = "\u{7A5D}"
puts char  # Output: 穝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31325;</p>  <!-- Display: 穝 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A5D;</p>  <!-- Display: 穝 -->

URL Encoding:

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

Encodings

MD5:

05b0552f0227fc408080239311c6c045

SHA1:

6a15b97aeccbbb8b8ef49ae1393db452e5ecaa61

Base64:

56md