Unicode Finder

"獹" U+7379(CJK UNIFIED IDEOGRAPH-7379)

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

Programming

C
\u7379
JavaScript
\u7379
Java
\u7379
Json
\u7379
Python
\u7379
Perl
\x{7379}
PHP
\x{7379}
Ruby
\u{7379}
Rust
\u{7379}
Go
\u7379

Web

CSS
\007379
HtmlDecimal
獹
HtmlHexadecimal
獹
Url
%E7%8D%B9

Code

MD5
de90586f5652eb81b8f925b3539b29d7
Sha1
aabd3734a6229f63a2ef89a272072192b79655c3
Base64
5425

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7379';
console.log(char);  // Output: 獹

Java:

char c = '\u7379';
System.out.println(c);  // Output: 獹

JSON:

{"text": "\u7379"}  // Value: 獹

Python:

char = '\u7379'
print(char)  # Output: 獹

Perl:

my $char = "\x{7379}";
print $char;  # Output: 獹

PHP:

$char = "\x{7379}";
echo $char;  // Output: 獹

Ruby:

char = "\u{7379}"
puts char  # Output: 獹

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007379";  /* Display: 獹 */
}

HTML Decimal:

<p>HTML decimal: &#29561;</p>  <!-- Display: 獹 -->

HTML Hexadecimal:

<p>HTML hex: &#x7379;</p>  <!-- Display: 獹 -->

URL Encoding:

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

Encodings

MD5:

de90586f5652eb81b8f925b3539b29d7

SHA1:

aabd3734a6229f63a2ef89a272072192b79655c3

Base64:

5425