Unicode Finder

"穋" U+7A4B(CJK UNIFIED IDEOGRAPH-7A4B)

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

Programming

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

Web

CSS
\007A4B
HtmlDecimal
穋
HtmlHexadecimal
穋
Url
%E7%A9%8B

Code

MD5
a8d768f32d9010c596b5c7fef0fe5710
Sha1
40292e94c615ae1480a511957e0abc352aaa2da6
Base64
56mL

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7A4B';
console.log(char);  // Output: 穋

Java:

char c = '\u7A4B';
System.out.println(c);  // Output: 穋

JSON:

{"text": "\u7A4B"}  // Value: 穋

Python:

char = '\u7A4B'
print(char)  # Output: 穋

Perl:

my $char = "\x{7A4B}";
print $char;  # Output: 穋

PHP:

$char = "\x{7A4B}";
echo $char;  // Output: 穋

Ruby:

char = "\u{7A4B}"
puts char  # Output: 穋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31307;</p>  <!-- Display: 穋 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A4B;</p>  <!-- Display: 穋 -->

URL Encoding:

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

Encodings

MD5:

a8d768f32d9010c596b5c7fef0fe5710

SHA1:

40292e94c615ae1480a511957e0abc352aaa2da6

Base64:

56mL