Unicode Finder

"眨" U+7728(CJK UNIFIED IDEOGRAPH-7728)

U+7728
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7728

Programming

C
\u7728
JavaScript
\u7728
Java
\u7728
Json
\u7728
Python
\u7728
Perl
\x{7728}
PHP
\x{7728}
Ruby
\u{7728}
Rust
\u{7728}
Go
\u7728

Web

CSS
\007728
HtmlDecimal
眨
HtmlHexadecimal
眨
Url
%E7%9C%A8

Code

MD5
a92e92418f9cc067e2e455d054b1580a
Sha1
e1432ab5616f97de07f594b63182b75c5362f17b
Base64
55yo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7728';
console.log(char);  // Output: 眨

Java:

char c = '\u7728';
System.out.println(c);  // Output: 眨

JSON:

{"text": "\u7728"}  // Value: 眨

Python:

char = '\u7728'
print(char)  # Output: 眨

Perl:

my $char = "\x{7728}";
print $char;  # Output: 眨

PHP:

$char = "\x{7728}";
echo $char;  // Output: 眨

Ruby:

char = "\u{7728}"
puts char  # Output: 眨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007728";  /* Display: 眨 */
}

HTML Decimal:

<p>HTML decimal: &#30504;</p>  <!-- Display: 眨 -->

HTML Hexadecimal:

<p>HTML hex: &#x7728;</p>  <!-- Display: 眨 -->

URL Encoding:

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

Encodings

MD5:

a92e92418f9cc067e2e455d054b1580a

SHA1:

e1432ab5616f97de07f594b63182b75c5362f17b

Base64:

55yo