Unicode Finder

"睘" U+7758(CJK UNIFIED IDEOGRAPH-7758)

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

Programming

C
\u7758
JavaScript
\u7758
Java
\u7758
Json
\u7758
Python
\u7758
Perl
\x{7758}
PHP
\x{7758}
Ruby
\u{7758}
Rust
\u{7758}
Go
\u7758

Web

CSS
\007758
HtmlDecimal
睘
HtmlHexadecimal
睘
Url
%E7%9D%98

Code

MD5
6dce18d3869c484e96bcc62441f66f60
Sha1
898f04373cdda8e61dedefda4951955d8f62622e
Base64
552Y

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7758';
console.log(char);  // Output: 睘

Java:

char c = '\u7758';
System.out.println(c);  // Output: 睘

JSON:

{"text": "\u7758"}  // Value: 睘

Python:

char = '\u7758'
print(char)  # Output: 睘

Perl:

my $char = "\x{7758}";
print $char;  # Output: 睘

PHP:

$char = "\x{7758}";
echo $char;  // Output: 睘

Ruby:

char = "\u{7758}"
puts char  # Output: 睘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007758";  /* Display: 睘 */
}

HTML Decimal:

<p>HTML decimal: &#30552;</p>  <!-- Display: 睘 -->

HTML Hexadecimal:

<p>HTML hex: &#x7758;</p>  <!-- Display: 睘 -->

URL Encoding:

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

Encodings

MD5:

6dce18d3869c484e96bcc62441f66f60

SHA1:

898f04373cdda8e61dedefda4951955d8f62622e

Base64:

552Y