Unicode Finder

"穼" U+7A7C(CJK UNIFIED IDEOGRAPH-7A7C)

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

Programming

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

Web

CSS
\007A7C
HtmlDecimal
穼
HtmlHexadecimal
穼
Url
%E7%A9%BC

Code

MD5
166a93f9c23a1ebe200700a8ea0b7532
Sha1
b85d9da2feb4926f45c5bbc4345e61e64442bb26
Base64
56m8

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7A7C';
console.log(char);  // Output: 穼

Java:

char c = '\u7A7C';
System.out.println(c);  // Output: 穼

JSON:

{"text": "\u7A7C"}  // Value: 穼

Python:

char = '\u7A7C'
print(char)  # Output: 穼

Perl:

my $char = "\x{7A7C}";
print $char;  # Output: 穼

PHP:

$char = "\x{7A7C}";
echo $char;  // Output: 穼

Ruby:

char = "\u{7A7C}"
puts char  # Output: 穼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31356;</p>  <!-- Display: 穼 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A7C;</p>  <!-- Display: 穼 -->

URL Encoding:

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

Encodings

MD5:

166a93f9c23a1ebe200700a8ea0b7532

SHA1:

b85d9da2feb4926f45c5bbc4345e61e64442bb26

Base64:

56m8