Unicode Finder

"獴" U+7374(CJK UNIFIED IDEOGRAPH-7374)

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

Programming

C
\u7374
JavaScript
\u7374
Java
\u7374
Json
\u7374
Python
\u7374
Perl
\x{7374}
PHP
\x{7374}
Ruby
\u{7374}
Rust
\u{7374}
Go
\u7374

Web

CSS
\007374
HtmlDecimal
獴
HtmlHexadecimal
獴
Url
%E7%8D%B4

Code

MD5
2a3314fa8bb69e69294f439ea4077a2c
Sha1
66d2420402ce83da188f322b33b0437bc4ca49a9
Base64
5420

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7374';
console.log(char);  // Output: 獴

Java:

char c = '\u7374';
System.out.println(c);  // Output: 獴

JSON:

{"text": "\u7374"}  // Value: 獴

Python:

char = '\u7374'
print(char)  # Output: 獴

Perl:

my $char = "\x{7374}";
print $char;  # Output: 獴

PHP:

$char = "\x{7374}";
echo $char;  // Output: 獴

Ruby:

char = "\u{7374}"
puts char  # Output: 獴

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007374";  /* Display: 獴 */
}

HTML Decimal:

<p>HTML decimal: &#29556;</p>  <!-- Display: 獴 -->

HTML Hexadecimal:

<p>HTML hex: &#x7374;</p>  <!-- Display: 獴 -->

URL Encoding:

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

Encodings

MD5:

2a3314fa8bb69e69294f439ea4077a2c

SHA1:

66d2420402ce83da188f322b33b0437bc4ca49a9

Base64:

5420