Unicode Finder

"獢" U+7362(CJK UNIFIED IDEOGRAPH-7362)

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

Programming

C
\u7362
JavaScript
\u7362
Java
\u7362
Json
\u7362
Python
\u7362
Perl
\x{7362}
PHP
\x{7362}
Ruby
\u{7362}
Rust
\u{7362}
Go
\u7362

Web

CSS
\007362
HtmlDecimal
獢
HtmlHexadecimal
獢
Url
%E7%8D%A2

Code

MD5
c4727488014c4a4d12fbb17d94a09648
Sha1
32c926c47accdd37b92a279587f7ad29dddc16a8
Base64
542i

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7362';
console.log(char);  // Output: 獢

Java:

char c = '\u7362';
System.out.println(c);  // Output: 獢

JSON:

{"text": "\u7362"}  // Value: 獢

Python:

char = '\u7362'
print(char)  # Output: 獢

Perl:

my $char = "\x{7362}";
print $char;  # Output: 獢

PHP:

$char = "\x{7362}";
echo $char;  // Output: 獢

Ruby:

char = "\u{7362}"
puts char  # Output: 獢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007362";  /* Display: 獢 */
}

HTML Decimal:

<p>HTML decimal: &#29538;</p>  <!-- Display: 獢 -->

HTML Hexadecimal:

<p>HTML hex: &#x7362;</p>  <!-- Display: 獢 -->

URL Encoding:

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

Encodings

MD5:

c4727488014c4a4d12fbb17d94a09648

SHA1:

32c926c47accdd37b92a279587f7ad29dddc16a8

Base64:

542i