Unicode Finder

"眩" U+7729(CJK UNIFIED IDEOGRAPH-7729)

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

Programming

C
\u7729
JavaScript
\u7729
Java
\u7729
Json
\u7729
Python
\u7729
Perl
\x{7729}
PHP
\x{7729}
Ruby
\u{7729}
Rust
\u{7729}
Go
\u7729

Web

CSS
\007729
HtmlDecimal
眩
HtmlHexadecimal
眩
Url
%E7%9C%A9

Code

MD5
4c30358684c6381cc31017754f08506a
Sha1
c6f49e32df6666c0367a1af12a5942346df502b5
Base64
55yp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7729';
console.log(char);  // Output: 眩

Java:

char c = '\u7729';
System.out.println(c);  // Output: 眩

JSON:

{"text": "\u7729"}  // Value: 眩

Python:

char = '\u7729'
print(char)  # Output: 眩

Perl:

my $char = "\x{7729}";
print $char;  # Output: 眩

PHP:

$char = "\x{7729}";
echo $char;  // Output: 眩

Ruby:

char = "\u{7729}"
puts char  # Output: 眩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007729";  /* Display: 眩 */
}

HTML Decimal:

<p>HTML decimal: &#30505;</p>  <!-- Display: 眩 -->

HTML Hexadecimal:

<p>HTML hex: &#x7729;</p>  <!-- Display: 眩 -->

URL Encoding:

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

Encodings

MD5:

4c30358684c6381cc31017754f08506a

SHA1:

c6f49e32df6666c0367a1af12a5942346df502b5

Base64:

55yp