Unicode Finder

"獒" U+7352(CJK UNIFIED IDEOGRAPH-7352)

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

Programming

C
\u7352
JavaScript
\u7352
Java
\u7352
Json
\u7352
Python
\u7352
Perl
\x{7352}
PHP
\x{7352}
Ruby
\u{7352}
Rust
\u{7352}
Go
\u7352

Web

CSS
\007352
HtmlDecimal
獒
HtmlHexadecimal
獒
Url
%E7%8D%92

Code

MD5
74f4addd38fa9897322f0d0e395eb342
Sha1
98db58358973c0177514ed17e5ab527dddfb0953
Base64
542S

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7352';
console.log(char);  // Output: 獒

Java:

char c = '\u7352';
System.out.println(c);  // Output: 獒

JSON:

{"text": "\u7352"}  // Value: 獒

Python:

char = '\u7352'
print(char)  # Output: 獒

Perl:

my $char = "\x{7352}";
print $char;  # Output: 獒

PHP:

$char = "\x{7352}";
echo $char;  // Output: 獒

Ruby:

char = "\u{7352}"
puts char  # Output: 獒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007352";  /* Display: 獒 */
}

HTML Decimal:

<p>HTML decimal: &#29522;</p>  <!-- Display: 獒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7352;</p>  <!-- Display: 獒 -->

URL Encoding:

// 獒 URL encoding
https://unicodefinder.com/search.php?query=%E7%8D%92

Encodings

MD5:

74f4addd38fa9897322f0d0e395eb342

SHA1:

98db58358973c0177514ed17e5ab527dddfb0953

Base64:

542S