Unicode Finder

"瘄" U+7604(CJK UNIFIED IDEOGRAPH-7604)

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

Programming

C
\u7604
JavaScript
\u7604
Java
\u7604
Json
\u7604
Python
\u7604
Perl
\x{7604}
PHP
\x{7604}
Ruby
\u{7604}
Rust
\u{7604}
Go
\u7604

Web

CSS
\007604
HtmlDecimal
瘄
HtmlHexadecimal
瘄
Url
%E7%98%84

Code

MD5
951921af8b4289eea603f1ae874018bf
Sha1
51ce2cea1b064651fb559870a601a82e87c3c5af
Base64
55iE

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7604';
console.log(char);  // Output: 瘄

Java:

char c = '\u7604';
System.out.println(c);  // Output: 瘄

JSON:

{"text": "\u7604"}  // Value: 瘄

Python:

char = '\u7604'
print(char)  # Output: 瘄

Perl:

my $char = "\x{7604}";
print $char;  # Output: 瘄

PHP:

$char = "\x{7604}";
echo $char;  // Output: 瘄

Ruby:

char = "\u{7604}"
puts char  # Output: 瘄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007604";  /* Display: 瘄 */
}

HTML Decimal:

<p>HTML decimal: &#30212;</p>  <!-- Display: 瘄 -->

HTML Hexadecimal:

<p>HTML hex: &#x7604;</p>  <!-- Display: 瘄 -->

URL Encoding:

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

Encodings

MD5:

951921af8b4289eea603f1ae874018bf

SHA1:

51ce2cea1b064651fb559870a601a82e87c3c5af

Base64:

55iE