Unicode Finder

"睃" U+7743(CJK UNIFIED IDEOGRAPH-7743)

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

Programming

C
\u7743
JavaScript
\u7743
Java
\u7743
Json
\u7743
Python
\u7743
Perl
\x{7743}
PHP
\x{7743}
Ruby
\u{7743}
Rust
\u{7743}
Go
\u7743

Web

CSS
\007743
HtmlDecimal
睃
HtmlHexadecimal
睃
Url
%E7%9D%83

Code

MD5
0c25c69296881aca030b5ee4cc3d8300
Sha1
03f82385eb5664fcf19fb179ba7dbad85ebd7cb8
Base64
552D

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7743';
console.log(char);  // Output: 睃

Java:

char c = '\u7743';
System.out.println(c);  // Output: 睃

JSON:

{"text": "\u7743"}  // Value: 睃

Python:

char = '\u7743'
print(char)  # Output: 睃

Perl:

my $char = "\x{7743}";
print $char;  # Output: 睃

PHP:

$char = "\x{7743}";
echo $char;  // Output: 睃

Ruby:

char = "\u{7743}"
puts char  # Output: 睃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007743";  /* Display: 睃 */
}

HTML Decimal:

<p>HTML decimal: &#30531;</p>  <!-- Display: 睃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7743;</p>  <!-- Display: 睃 -->

URL Encoding:

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

Encodings

MD5:

0c25c69296881aca030b5ee4cc3d8300

SHA1:

03f82385eb5664fcf19fb179ba7dbad85ebd7cb8

Base64:

552D