Unicode Finder

"猰" U+7330(CJK UNIFIED IDEOGRAPH-7330)

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

Programming

C
\u7330
JavaScript
\u7330
Java
\u7330
Json
\u7330
Python
\u7330
Perl
\x{7330}
PHP
\x{7330}
Ruby
\u{7330}
Rust
\u{7330}
Go
\u7330

Web

CSS
\007330
HtmlDecimal
猰
HtmlHexadecimal
猰
Url
%E7%8C%B0

Code

MD5
b2eda68c6e892d14b8889904b94ed610
Sha1
e252929690d8834e91d8208297e372c0c9446eba
Base64
54yw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7330';
console.log(char);  // Output: 猰

Java:

char c = '\u7330';
System.out.println(c);  // Output: 猰

JSON:

{"text": "\u7330"}  // Value: 猰

Python:

char = '\u7330'
print(char)  # Output: 猰

Perl:

my $char = "\x{7330}";
print $char;  # Output: 猰

PHP:

$char = "\x{7330}";
echo $char;  // Output: 猰

Ruby:

char = "\u{7330}"
puts char  # Output: 猰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007330";  /* Display: 猰 */
}

HTML Decimal:

<p>HTML decimal: &#29488;</p>  <!-- Display: 猰 -->

HTML Hexadecimal:

<p>HTML hex: &#x7330;</p>  <!-- Display: 猰 -->

URL Encoding:

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

Encodings

MD5:

b2eda68c6e892d14b8889904b94ed610

SHA1:

e252929690d8834e91d8208297e372c0c9446eba

Base64:

54yw