Unicode Finder

"猡" U+7321(CJK UNIFIED IDEOGRAPH-7321)

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

Programming

C
\u7321
JavaScript
\u7321
Java
\u7321
Json
\u7321
Python
\u7321
Perl
\x{7321}
PHP
\x{7321}
Ruby
\u{7321}
Rust
\u{7321}
Go
\u7321

Web

CSS
\007321
HtmlDecimal
猡
HtmlHexadecimal
猡
Url
%E7%8C%A1

Code

MD5
00336add958e3153a0a097c8d832aae7
Sha1
74bfb69a9cc97377957bdb4a0e94a41ff95db1f7
Base64
54yh

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7321';
console.log(char);  // Output: 猡

Java:

char c = '\u7321';
System.out.println(c);  // Output: 猡

JSON:

{"text": "\u7321"}  // Value: 猡

Python:

char = '\u7321'
print(char)  # Output: 猡

Perl:

my $char = "\x{7321}";
print $char;  # Output: 猡

PHP:

$char = "\x{7321}";
echo $char;  // Output: 猡

Ruby:

char = "\u{7321}"
puts char  # Output: 猡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007321";  /* Display: 猡 */
}

HTML Decimal:

<p>HTML decimal: &#29473;</p>  <!-- Display: 猡 -->

HTML Hexadecimal:

<p>HTML hex: &#x7321;</p>  <!-- Display: 猡 -->

URL Encoding:

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

Encodings

MD5:

00336add958e3153a0a097c8d832aae7

SHA1:

74bfb69a9cc97377957bdb4a0e94a41ff95db1f7

Base64:

54yh