Unicode Finder

"猚" U+731A(CJK UNIFIED IDEOGRAPH-731A)

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

Programming

C
\u731A
JavaScript
\u731A
Java
\u731A
Json
\u731A
Python
\u731A
Perl
\x{731A}
PHP
\x{731A}
Ruby
\u{731A}
Rust
\u{731A}
Go
\u731A

Web

CSS
\00731A
HtmlDecimal
猚
HtmlHexadecimal
猚
Url
%E7%8C%9A

Code

MD5
d2746339da24f6ca453dd10e24d6bb4e
Sha1
e6463a99b3f647f71d927b12eb020826ed36eece
Base64
54ya

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u731A';
console.log(char);  // Output: 猚

Java:

char c = '\u731A';
System.out.println(c);  // Output: 猚

JSON:

{"text": "\u731A"}  // Value: 猚

Python:

char = '\u731A'
print(char)  # Output: 猚

Perl:

my $char = "\x{731A}";
print $char;  # Output: 猚

PHP:

$char = "\x{731A}";
echo $char;  // Output: 猚

Ruby:

char = "\u{731A}"
puts char  # Output: 猚

Rust:

let c = '\u{731A}';
println!("{}", c);  // Output: 猚

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00731A";  /* Display: 猚 */
}

HTML Decimal:

<p>HTML decimal: &#29466;</p>  <!-- Display: 猚 -->

HTML Hexadecimal:

<p>HTML hex: &#x731A;</p>  <!-- Display: 猚 -->

URL Encoding:

// 猚 URL encoding
https://unicodefinder.com/search.php?query=%E7%8C%9A

Encodings

MD5:

d2746339da24f6ca453dd10e24d6bb4e

SHA1:

e6463a99b3f647f71d927b12eb020826ed36eece

Base64:

54ya