Unicode Finder

"睓" U+7753(CJK UNIFIED IDEOGRAPH-7753)

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

Programming

C
\u7753
JavaScript
\u7753
Java
\u7753
Json
\u7753
Python
\u7753
Perl
\x{7753}
PHP
\x{7753}
Ruby
\u{7753}
Rust
\u{7753}
Go
\u7753

Web

CSS
\007753
HtmlDecimal
睓
HtmlHexadecimal
睓
Url
%E7%9D%93

Code

MD5
ffd587cd80958df42fdde7aec8aaf0fe
Sha1
e4162de1362692273da86fcbc1b12effa2761e2b
Base64
552T

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7753';
console.log(char);  // Output: 睓

Java:

char c = '\u7753';
System.out.println(c);  // Output: 睓

JSON:

{"text": "\u7753"}  // Value: 睓

Python:

char = '\u7753'
print(char)  # Output: 睓

Perl:

my $char = "\x{7753}";
print $char;  # Output: 睓

PHP:

$char = "\x{7753}";
echo $char;  // Output: 睓

Ruby:

char = "\u{7753}"
puts char  # Output: 睓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007753";  /* Display: 睓 */
}

HTML Decimal:

<p>HTML decimal: &#30547;</p>  <!-- Display: 睓 -->

HTML Hexadecimal:

<p>HTML hex: &#x7753;</p>  <!-- Display: 睓 -->

URL Encoding:

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

Encodings

MD5:

ffd587cd80958df42fdde7aec8aaf0fe

SHA1:

e4162de1362692273da86fcbc1b12effa2761e2b

Base64:

552T