Unicode Finder

"獸" U+7378(CJK UNIFIED IDEOGRAPH-7378)

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

Programming

C
\u7378
JavaScript
\u7378
Java
\u7378
Json
\u7378
Python
\u7378
Perl
\x{7378}
PHP
\x{7378}
Ruby
\u{7378}
Rust
\u{7378}
Go
\u7378

Web

CSS
\007378
HtmlDecimal
獸
HtmlHexadecimal
獸
Url
%E7%8D%B8

Code

MD5
af925b67bca3872118a6763f50f466be
Sha1
b4806511afab9e282e8796d54cb95a64cb6be52a
Base64
5424

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7378';
console.log(char);  // Output: 獸

Java:

char c = '\u7378';
System.out.println(c);  // Output: 獸

JSON:

{"text": "\u7378"}  // Value: 獸

Python:

char = '\u7378'
print(char)  # Output: 獸

Perl:

my $char = "\x{7378}";
print $char;  # Output: 獸

PHP:

$char = "\x{7378}";
echo $char;  // Output: 獸

Ruby:

char = "\u{7378}"
puts char  # Output: 獸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007378";  /* Display: 獸 */
}

HTML Decimal:

<p>HTML decimal: &#29560;</p>  <!-- Display: 獸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7378;</p>  <!-- Display: 獸 -->

URL Encoding:

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

Encodings

MD5:

af925b67bca3872118a6763f50f466be

SHA1:

b4806511afab9e282e8796d54cb95a64cb6be52a

Base64:

5424