Unicode Finder

"穻" U+7A7B(CJK UNIFIED IDEOGRAPH-7A7B)

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

Programming

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

Web

CSS
\007A7B
HtmlDecimal
穻
HtmlHexadecimal
穻
Url
%E7%A9%BB

Code

MD5
fdb768a579ad1d50bc09a5bdacc607cf
Sha1
88d4fb1951dab865196ca9c0e025f1b74197dc2c
Base64
56m7

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7A7B';
console.log(char);  // Output: 穻

Java:

char c = '\u7A7B';
System.out.println(c);  // Output: 穻

JSON:

{"text": "\u7A7B"}  // Value: 穻

Python:

char = '\u7A7B'
print(char)  # Output: 穻

Perl:

my $char = "\x{7A7B}";
print $char;  # Output: 穻

PHP:

$char = "\x{7A7B}";
echo $char;  // Output: 穻

Ruby:

char = "\u{7A7B}"
puts char  # Output: 穻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31355;</p>  <!-- Display: 穻 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A7B;</p>  <!-- Display: 穻 -->

URL Encoding:

// 穻 URL encoding
https://unicodefinder.com/search.php?query=%E7%A9%BB

Encodings

MD5:

fdb768a579ad1d50bc09a5bdacc607cf

SHA1:

88d4fb1951dab865196ca9c0e025f1b74197dc2c

Base64:

56m7