Unicode Finder

"猳" U+7333(CJK UNIFIED IDEOGRAPH-7333)

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

Programming

C
\u7333
JavaScript
\u7333
Java
\u7333
Json
\u7333
Python
\u7333
Perl
\x{7333}
PHP
\x{7333}
Ruby
\u{7333}
Rust
\u{7333}
Go
\u7333

Web

CSS
\007333
HtmlDecimal
猳
HtmlHexadecimal
猳
Url
%E7%8C%B3

Code

MD5
77f450669d39a24c8e789c8a88b01335
Sha1
e168a02877fcc462fa19ef43ce880d6cb22dc556
Base64
54yz

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7333';
console.log(char);  // Output: 猳

Java:

char c = '\u7333';
System.out.println(c);  // Output: 猳

JSON:

{"text": "\u7333"}  // Value: 猳

Python:

char = '\u7333'
print(char)  # Output: 猳

Perl:

my $char = "\x{7333}";
print $char;  # Output: 猳

PHP:

$char = "\x{7333}";
echo $char;  // Output: 猳

Ruby:

char = "\u{7333}"
puts char  # Output: 猳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007333";  /* Display: 猳 */
}

HTML Decimal:

<p>HTML decimal: &#29491;</p>  <!-- Display: 猳 -->

HTML Hexadecimal:

<p>HTML hex: &#x7333;</p>  <!-- Display: 猳 -->

URL Encoding:

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

Encodings

MD5:

77f450669d39a24c8e789c8a88b01335

SHA1:

e168a02877fcc462fa19ef43ce880d6cb22dc556

Base64:

54yz