Unicode Finder

"穭" U+7A6D(CJK UNIFIED IDEOGRAPH-7A6D)

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

Programming

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

Web

CSS
\007A6D
HtmlDecimal
穭
HtmlHexadecimal
穭
Url
%E7%A9%AD

Code

MD5
89c7f9f772cf93fead6f32fbbd8eb6e9
Sha1
bd9bfda365845ae1ed189d48dc4c1b0f289a922b
Base64
56mt

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7A6D';
console.log(char);  // Output: 穭

Java:

char c = '\u7A6D';
System.out.println(c);  // Output: 穭

JSON:

{"text": "\u7A6D"}  // Value: 穭

Python:

char = '\u7A6D'
print(char)  # Output: 穭

Perl:

my $char = "\x{7A6D}";
print $char;  # Output: 穭

PHP:

$char = "\x{7A6D}";
echo $char;  // Output: 穭

Ruby:

char = "\u{7A6D}"
puts char  # Output: 穭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31341;</p>  <!-- Display: 穭 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A6D;</p>  <!-- Display: 穭 -->

URL Encoding:

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

Encodings

MD5:

89c7f9f772cf93fead6f32fbbd8eb6e9

SHA1:

bd9bfda365845ae1ed189d48dc4c1b0f289a922b

Base64:

56mt