Unicode Finder

"睢" U+7762(CJK UNIFIED IDEOGRAPH-7762)

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

Programming

C
\u7762
JavaScript
\u7762
Java
\u7762
Json
\u7762
Python
\u7762
Perl
\x{7762}
PHP
\x{7762}
Ruby
\u{7762}
Rust
\u{7762}
Go
\u7762

Web

CSS
\007762
HtmlDecimal
睢
HtmlHexadecimal
睢
Url
%E7%9D%A2

Code

MD5
c524475befd7890ef19c13c8d10ac9ae
Sha1
ab34cf1d0eef02ec21e1910ccce6dac9b3ee414b
Base64
552i

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7762';
console.log(char);  // Output: 睢

Java:

char c = '\u7762';
System.out.println(c);  // Output: 睢

JSON:

{"text": "\u7762"}  // Value: 睢

Python:

char = '\u7762'
print(char)  # Output: 睢

Perl:

my $char = "\x{7762}";
print $char;  # Output: 睢

PHP:

$char = "\x{7762}";
echo $char;  // Output: 睢

Ruby:

char = "\u{7762}"
puts char  # Output: 睢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007762";  /* Display: 睢 */
}

HTML Decimal:

<p>HTML decimal: &#30562;</p>  <!-- Display: 睢 -->

HTML Hexadecimal:

<p>HTML hex: &#x7762;</p>  <!-- Display: 睢 -->

URL Encoding:

// 睢 URL encoding
https://unicodefinder.com/search.php?query=%E7%9D%A2

Encodings

MD5:

c524475befd7890ef19c13c8d10ac9ae

SHA1:

ab34cf1d0eef02ec21e1910ccce6dac9b3ee414b

Base64:

552i