Unicode Finder

"瘂" U+7602(CJK UNIFIED IDEOGRAPH-7602)

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

Programming

C
\u7602
JavaScript
\u7602
Java
\u7602
Json
\u7602
Python
\u7602
Perl
\x{7602}
PHP
\x{7602}
Ruby
\u{7602}
Rust
\u{7602}
Go
\u7602

Web

CSS
\007602
HtmlDecimal
瘂
HtmlHexadecimal
瘂
Url
%E7%98%82

Code

MD5
b1db7f76238e3b22f216b657bed98c7b
Sha1
fc51e9824c76b795de82e34598c14e65492cee3a
Base64
55iC

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7602';
console.log(char);  // Output: 瘂

Java:

char c = '\u7602';
System.out.println(c);  // Output: 瘂

JSON:

{"text": "\u7602"}  // Value: 瘂

Python:

char = '\u7602'
print(char)  # Output: 瘂

Perl:

my $char = "\x{7602}";
print $char;  # Output: 瘂

PHP:

$char = "\x{7602}";
echo $char;  // Output: 瘂

Ruby:

char = "\u{7602}"
puts char  # Output: 瘂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007602";  /* Display: 瘂 */
}

HTML Decimal:

<p>HTML decimal: &#30210;</p>  <!-- Display: 瘂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7602;</p>  <!-- Display: 瘂 -->

URL Encoding:

// 瘂 URL encoding
https://unicodefinder.com/search.php?query=%E7%98%82

Encodings

MD5:

b1db7f76238e3b22f216b657bed98c7b

SHA1:

fc51e9824c76b795de82e34598c14e65492cee3a

Base64:

55iC