Unicode Finder

"眲" U+7732(CJK UNIFIED IDEOGRAPH-7732)

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

Programming

C
\u7732
JavaScript
\u7732
Java
\u7732
Json
\u7732
Python
\u7732
Perl
\x{7732}
PHP
\x{7732}
Ruby
\u{7732}
Rust
\u{7732}
Go
\u7732

Web

CSS
\007732
HtmlDecimal
眲
HtmlHexadecimal
眲
Url
%E7%9C%B2

Code

MD5
2090a38386951ef096756482a2f66ed3
Sha1
7f8b114f8aad405ef63871d88b2b50a44c3afc11
Base64
55yy

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7732';
console.log(char);  // Output: 眲

Java:

char c = '\u7732';
System.out.println(c);  // Output: 眲

JSON:

{"text": "\u7732"}  // Value: 眲

Python:

char = '\u7732'
print(char)  # Output: 眲

Perl:

my $char = "\x{7732}";
print $char;  # Output: 眲

PHP:

$char = "\x{7732}";
echo $char;  // Output: 眲

Ruby:

char = "\u{7732}"
puts char  # Output: 眲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007732";  /* Display: 眲 */
}

HTML Decimal:

<p>HTML decimal: &#30514;</p>  <!-- Display: 眲 -->

HTML Hexadecimal:

<p>HTML hex: &#x7732;</p>  <!-- Display: 眲 -->

URL Encoding:

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

Encodings

MD5:

2090a38386951ef096756482a2f66ed3

SHA1:

7f8b114f8aad405ef63871d88b2b50a44c3afc11

Base64:

55yy