Unicode Finder

"瘈" U+7608(CJK UNIFIED IDEOGRAPH-7608)

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

Programming

C
\u7608
JavaScript
\u7608
Java
\u7608
Json
\u7608
Python
\u7608
Perl
\x{7608}
PHP
\x{7608}
Ruby
\u{7608}
Rust
\u{7608}
Go
\u7608

Web

CSS
\007608
HtmlDecimal
瘈
HtmlHexadecimal
瘈
Url
%E7%98%88

Code

MD5
0e8319a7627006503e67a837b0c7e3e5
Sha1
0c28bf85d2a92c9e319ea3219a15e08eccf21dea
Base64
55iI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7608';
console.log(char);  // Output: 瘈

Java:

char c = '\u7608';
System.out.println(c);  // Output: 瘈

JSON:

{"text": "\u7608"}  // Value: 瘈

Python:

char = '\u7608'
print(char)  # Output: 瘈

Perl:

my $char = "\x{7608}";
print $char;  # Output: 瘈

PHP:

$char = "\x{7608}";
echo $char;  // Output: 瘈

Ruby:

char = "\u{7608}"
puts char  # Output: 瘈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007608";  /* Display: 瘈 */
}

HTML Decimal:

<p>HTML decimal: &#30216;</p>  <!-- Display: 瘈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7608;</p>  <!-- Display: 瘈 -->

URL Encoding:

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

Encodings

MD5:

0e8319a7627006503e67a837b0c7e3e5

SHA1:

0c28bf85d2a92c9e319ea3219a15e08eccf21dea

Base64:

55iI