Unicode Finder

"猐" U+7310(CJK UNIFIED IDEOGRAPH-7310)

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

Programming

C
\u7310
JavaScript
\u7310
Java
\u7310
Json
\u7310
Python
\u7310
Perl
\x{7310}
PHP
\x{7310}
Ruby
\u{7310}
Rust
\u{7310}
Go
\u7310

Web

CSS
\007310
HtmlDecimal
猐
HtmlHexadecimal
猐
Url
%E7%8C%90

Code

MD5
fee82bb8fda9a473fa5a96065018b133
Sha1
083615dec3d9bc6a3f2ed1002d31f51be236c38c
Base64
54yQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7310';
console.log(char);  // Output: 猐

Java:

char c = '\u7310';
System.out.println(c);  // Output: 猐

JSON:

{"text": "\u7310"}  // Value: 猐

Python:

char = '\u7310'
print(char)  # Output: 猐

Perl:

my $char = "\x{7310}";
print $char;  # Output: 猐

PHP:

$char = "\x{7310}";
echo $char;  // Output: 猐

Ruby:

char = "\u{7310}"
puts char  # Output: 猐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007310";  /* Display: 猐 */
}

HTML Decimal:

<p>HTML decimal: &#29456;</p>  <!-- Display: 猐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7310;</p>  <!-- Display: 猐 -->

URL Encoding:

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

Encodings

MD5:

fee82bb8fda9a473fa5a96065018b133

SHA1:

083615dec3d9bc6a3f2ed1002d31f51be236c38c

Base64:

54yQ