Unicode Finder

"穬" U+7A6C(CJK UNIFIED IDEOGRAPH-7A6C)

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

Programming

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

Web

CSS
\007A6C
HtmlDecimal
穬
HtmlHexadecimal
穬
Url
%E7%A9%AC

Code

MD5
34088cbab8155e605e0fc5f83434eb9f
Sha1
f56839bffeb4d9226dd7a00c1a13bf4dd964eb4a
Base64
56ms

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7A6C';
console.log(char);  // Output: 穬

Java:

char c = '\u7A6C';
System.out.println(c);  // Output: 穬

JSON:

{"text": "\u7A6C"}  // Value: 穬

Python:

char = '\u7A6C'
print(char)  # Output: 穬

Perl:

my $char = "\x{7A6C}";
print $char;  # Output: 穬

PHP:

$char = "\x{7A6C}";
echo $char;  // Output: 穬

Ruby:

char = "\u{7A6C}"
puts char  # Output: 穬

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31340;</p>  <!-- Display: 穬 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A6C;</p>  <!-- Display: 穬 -->

URL Encoding:

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

Encodings

MD5:

34088cbab8155e605e0fc5f83434eb9f

SHA1:

f56839bffeb4d9226dd7a00c1a13bf4dd964eb4a

Base64:

56ms