Unicode Finder

"猤" U+7324(CJK UNIFIED IDEOGRAPH-7324)

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

Programming

C
\u7324
JavaScript
\u7324
Java
\u7324
Json
\u7324
Python
\u7324
Perl
\x{7324}
PHP
\x{7324}
Ruby
\u{7324}
Rust
\u{7324}
Go
\u7324

Web

CSS
\007324
HtmlDecimal
猤
HtmlHexadecimal
猤
Url
%E7%8C%A4

Code

MD5
938cbde0aa73a734abf96ad1d8b8d9b6
Sha1
32e8e96a68d28eaf91e8839e2805e9748cc8fa04
Base64
54yk

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7324';
console.log(char);  // Output: 猤

Java:

char c = '\u7324';
System.out.println(c);  // Output: 猤

JSON:

{"text": "\u7324"}  // Value: 猤

Python:

char = '\u7324'
print(char)  # Output: 猤

Perl:

my $char = "\x{7324}";
print $char;  # Output: 猤

PHP:

$char = "\x{7324}";
echo $char;  // Output: 猤

Ruby:

char = "\u{7324}"
puts char  # Output: 猤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007324";  /* Display: 猤 */
}

HTML Decimal:

<p>HTML decimal: &#29476;</p>  <!-- Display: 猤 -->

HTML Hexadecimal:

<p>HTML hex: &#x7324;</p>  <!-- Display: 猤 -->

URL Encoding:

// 猤 URL encoding
https://unicodefinder.com/search.php?query=%E7%8C%A4

Encodings

MD5:

938cbde0aa73a734abf96ad1d8b8d9b6

SHA1:

32e8e96a68d28eaf91e8839e2805e9748cc8fa04

Base64:

54yk