Unicode Finder

"穈" U+7A48(CJK UNIFIED IDEOGRAPH-7A48)

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

Programming

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

Web

CSS
\007A48
HtmlDecimal
穈
HtmlHexadecimal
穈
Url
%E7%A9%88

Code

MD5
6e8078ee0b8965b98747476dd64d34ed
Sha1
71ef3a8ae04569ba2562a03a1efa1d378489c230
Base64
56mI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7A48';
console.log(char);  // Output: 穈

Java:

char c = '\u7A48';
System.out.println(c);  // Output: 穈

JSON:

{"text": "\u7A48"}  // Value: 穈

Python:

char = '\u7A48'
print(char)  # Output: 穈

Perl:

my $char = "\x{7A48}";
print $char;  # Output: 穈

PHP:

$char = "\x{7A48}";
echo $char;  // Output: 穈

Ruby:

char = "\u{7A48}"
puts char  # Output: 穈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31304;</p>  <!-- Display: 穈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A48;</p>  <!-- Display: 穈 -->

URL Encoding:

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

Encodings

MD5:

6e8078ee0b8965b98747476dd64d34ed

SHA1:

71ef3a8ae04569ba2562a03a1efa1d378489c230

Base64:

56mI