Unicode Finder

"眤" U+7724(CJK UNIFIED IDEOGRAPH-7724)

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

Programming

C
\u7724
JavaScript
\u7724
Java
\u7724
Json
\u7724
Python
\u7724
Perl
\x{7724}
PHP
\x{7724}
Ruby
\u{7724}
Rust
\u{7724}
Go
\u7724

Web

CSS
\007724
HtmlDecimal
眤
HtmlHexadecimal
眤
Url
%E7%9C%A4

Code

MD5
437c15aa0b86ffa13f665e29f067d88d
Sha1
b7e914ce14b1ed00348a78e74427cad1297f11b1
Base64
55yk

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7724';
console.log(char);  // Output: 眤

Java:

char c = '\u7724';
System.out.println(c);  // Output: 眤

JSON:

{"text": "\u7724"}  // Value: 眤

Python:

char = '\u7724'
print(char)  # Output: 眤

Perl:

my $char = "\x{7724}";
print $char;  # Output: 眤

PHP:

$char = "\x{7724}";
echo $char;  // Output: 眤

Ruby:

char = "\u{7724}"
puts char  # Output: 眤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007724";  /* Display: 眤 */
}

HTML Decimal:

<p>HTML decimal: &#30500;</p>  <!-- Display: 眤 -->

HTML Hexadecimal:

<p>HTML hex: &#x7724;</p>  <!-- Display: 眤 -->

URL Encoding:

// 眤 URL encoding
https://unicodefinder.com/search.php?query=%E7%9C%A4

Encodings

MD5:

437c15aa0b86ffa13f665e29f067d88d

SHA1:

b7e914ce14b1ed00348a78e74427cad1297f11b1

Base64:

55yk