Unicode Finder

"瘉" U+7609(CJK UNIFIED IDEOGRAPH-7609)

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

Programming

C
\u7609
JavaScript
\u7609
Java
\u7609
Json
\u7609
Python
\u7609
Perl
\x{7609}
PHP
\x{7609}
Ruby
\u{7609}
Rust
\u{7609}
Go
\u7609

Web

CSS
\007609
HtmlDecimal
瘉
HtmlHexadecimal
瘉
Url
%E7%98%89

Code

MD5
69a4a47ccad408853fce7ee3fe92d181
Sha1
9a2d4d6ec5eb5ed80edec586f1857dfc0afe1176
Base64
55iJ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7609';
console.log(char);  // Output: 瘉

Java:

char c = '\u7609';
System.out.println(c);  // Output: 瘉

JSON:

{"text": "\u7609"}  // Value: 瘉

Python:

char = '\u7609'
print(char)  # Output: 瘉

Perl:

my $char = "\x{7609}";
print $char;  # Output: 瘉

PHP:

$char = "\x{7609}";
echo $char;  // Output: 瘉

Ruby:

char = "\u{7609}"
puts char  # Output: 瘉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007609";  /* Display: 瘉 */
}

HTML Decimal:

<p>HTML decimal: &#30217;</p>  <!-- Display: 瘉 -->

HTML Hexadecimal:

<p>HTML hex: &#x7609;</p>  <!-- Display: 瘉 -->

URL Encoding:

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

Encodings

MD5:

69a4a47ccad408853fce7ee3fe92d181

SHA1:

9a2d4d6ec5eb5ed80edec586f1857dfc0afe1176

Base64:

55iJ