Unicode Finder

"獶" U+7376(CJK UNIFIED IDEOGRAPH-7376)

U+7376
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7376

Programming

C
\u7376
JavaScript
\u7376
Java
\u7376
Json
\u7376
Python
\u7376
Perl
\x{7376}
PHP
\x{7376}
Ruby
\u{7376}
Rust
\u{7376}
Go
\u7376

Web

CSS
\007376
HtmlDecimal
獶
HtmlHexadecimal
獶
Url
%E7%8D%B6

Code

MD5
7abeaf88617380cc460036f4ea560803
Sha1
1d7584eb4120f9a72091654249a906239a055371
Base64
5422

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7376';
console.log(char);  // Output: 獶

Java:

char c = '\u7376';
System.out.println(c);  // Output: 獶

JSON:

{"text": "\u7376"}  // Value: 獶

Python:

char = '\u7376'
print(char)  # Output: 獶

Perl:

my $char = "\x{7376}";
print $char;  # Output: 獶

PHP:

$char = "\x{7376}";
echo $char;  // Output: 獶

Ruby:

char = "\u{7376}"
puts char  # Output: 獶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007376";  /* Display: 獶 */
}

HTML Decimal:

<p>HTML decimal: &#29558;</p>  <!-- Display: 獶 -->

HTML Hexadecimal:

<p>HTML hex: &#x7376;</p>  <!-- Display: 獶 -->

URL Encoding:

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

Encodings

MD5:

7abeaf88617380cc460036f4ea560803

SHA1:

1d7584eb4120f9a72091654249a906239a055371

Base64:

5422