Unicode Finder

"睂" U+7742(CJK UNIFIED IDEOGRAPH-7742)

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

Programming

C
\u7742
JavaScript
\u7742
Java
\u7742
Json
\u7742
Python
\u7742
Perl
\x{7742}
PHP
\x{7742}
Ruby
\u{7742}
Rust
\u{7742}
Go
\u7742

Web

CSS
\007742
HtmlDecimal
睂
HtmlHexadecimal
睂
Url
%E7%9D%82

Code

MD5
fb94e85341e3e065dafef01eb3a35fa2
Sha1
eadef51e7bd1f4604f259a4c5dd26a9e5cc3550e
Base64
552C

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7742';
console.log(char);  // Output: 睂

Java:

char c = '\u7742';
System.out.println(c);  // Output: 睂

JSON:

{"text": "\u7742"}  // Value: 睂

Python:

char = '\u7742'
print(char)  # Output: 睂

Perl:

my $char = "\x{7742}";
print $char;  # Output: 睂

PHP:

$char = "\x{7742}";
echo $char;  // Output: 睂

Ruby:

char = "\u{7742}"
puts char  # Output: 睂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007742";  /* Display: 睂 */
}

HTML Decimal:

<p>HTML decimal: &#30530;</p>  <!-- Display: 睂 -->

HTML Hexadecimal:

<p>HTML hex: &#x7742;</p>  <!-- Display: 睂 -->

URL Encoding:

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

Encodings

MD5:

fb94e85341e3e065dafef01eb3a35fa2

SHA1:

eadef51e7bd1f4604f259a4c5dd26a9e5cc3550e

Base64:

552C