Unicode Finder

"獖" U+7356(CJK UNIFIED IDEOGRAPH-7356)

U+7356
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7356

Programming

C
\u7356
JavaScript
\u7356
Java
\u7356
Json
\u7356
Python
\u7356
Perl
\x{7356}
PHP
\x{7356}
Ruby
\u{7356}
Rust
\u{7356}
Go
\u7356

Web

CSS
\007356
HtmlDecimal
獖
HtmlHexadecimal
獖
Url
%E7%8D%96

Code

MD5
f2053127ff582cbc9088dd1c1df601f6
Sha1
28d0000d8ec099c17034bc023e9f01aaf3323ff8
Base64
542W

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7356';
console.log(char);  // Output: 獖

Java:

char c = '\u7356';
System.out.println(c);  // Output: 獖

JSON:

{"text": "\u7356"}  // Value: 獖

Python:

char = '\u7356'
print(char)  # Output: 獖

Perl:

my $char = "\x{7356}";
print $char;  # Output: 獖

PHP:

$char = "\x{7356}";
echo $char;  // Output: 獖

Ruby:

char = "\u{7356}"
puts char  # Output: 獖

Rust:

let c = '\u{7356}';
println!("{}", c);  // Output: 獖

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007356";  /* Display: 獖 */
}

HTML Decimal:

<p>HTML decimal: &#29526;</p>  <!-- Display: 獖 -->

HTML Hexadecimal:

<p>HTML hex: &#x7356;</p>  <!-- Display: 獖 -->

URL Encoding:

// 獖 URL encoding
https://unicodefinder.com/search.php?query=%E7%8D%96

Encodings

MD5:

f2053127ff582cbc9088dd1c1df601f6

SHA1:

28d0000d8ec099c17034bc023e9f01aaf3323ff8

Base64:

542W