Unicode Finder

"睕" U+7755(CJK UNIFIED IDEOGRAPH-7755)

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

Programming

C
\u7755
JavaScript
\u7755
Java
\u7755
Json
\u7755
Python
\u7755
Perl
\x{7755}
PHP
\x{7755}
Ruby
\u{7755}
Rust
\u{7755}
Go
\u7755

Web

CSS
\007755
HtmlDecimal
睕
HtmlHexadecimal
睕
Url
%E7%9D%95

Code

MD5
d6ad22f86dc50c5fedd0b931e4f50735
Sha1
5d470d563e60dce240133d827b4a41fc0df3e2b7
Base64
552V

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7755';
console.log(char);  // Output: 睕

Java:

char c = '\u7755';
System.out.println(c);  // Output: 睕

JSON:

{"text": "\u7755"}  // Value: 睕

Python:

char = '\u7755'
print(char)  # Output: 睕

Perl:

my $char = "\x{7755}";
print $char;  # Output: 睕

PHP:

$char = "\x{7755}";
echo $char;  // Output: 睕

Ruby:

char = "\u{7755}"
puts char  # Output: 睕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007755";  /* Display: 睕 */
}

HTML Decimal:

<p>HTML decimal: &#30549;</p>  <!-- Display: 睕 -->

HTML Hexadecimal:

<p>HTML hex: &#x7755;</p>  <!-- Display: 睕 -->

URL Encoding:

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

Encodings

MD5:

d6ad22f86dc50c5fedd0b931e4f50735

SHA1:

5d470d563e60dce240133d827b4a41fc0df3e2b7

Base64:

552V