Unicode Finder

"獓" U+7353(CJK UNIFIED IDEOGRAPH-7353)

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

Programming

C
\u7353
JavaScript
\u7353
Java
\u7353
Json
\u7353
Python
\u7353
Perl
\x{7353}
PHP
\x{7353}
Ruby
\u{7353}
Rust
\u{7353}
Go
\u7353

Web

CSS
\007353
HtmlDecimal
獓
HtmlHexadecimal
獓
Url
%E7%8D%93

Code

MD5
3389a057d957475fd61f39f2c2078b87
Sha1
0e24ef7dbf9be524f46a130e16973374516d83e2
Base64
542T

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7353';
console.log(char);  // Output: 獓

Java:

char c = '\u7353';
System.out.println(c);  // Output: 獓

JSON:

{"text": "\u7353"}  // Value: 獓

Python:

char = '\u7353'
print(char)  # Output: 獓

Perl:

my $char = "\x{7353}";
print $char;  # Output: 獓

PHP:

$char = "\x{7353}";
echo $char;  // Output: 獓

Ruby:

char = "\u{7353}"
puts char  # Output: 獓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007353";  /* Display: 獓 */
}

HTML Decimal:

<p>HTML decimal: &#29523;</p>  <!-- Display: 獓 -->

HTML Hexadecimal:

<p>HTML hex: &#x7353;</p>  <!-- Display: 獓 -->

URL Encoding:

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

Encodings

MD5:

3389a057d957475fd61f39f2c2078b87

SHA1:

0e24ef7dbf9be524f46a130e16973374516d83e2

Base64:

542T