Unicode Finder

"睳" U+7773(CJK UNIFIED IDEOGRAPH-7773)

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

Programming

C
\u7773
JavaScript
\u7773
Java
\u7773
Json
\u7773
Python
\u7773
Perl
\x{7773}
PHP
\x{7773}
Ruby
\u{7773}
Rust
\u{7773}
Go
\u7773

Web

CSS
\007773
HtmlDecimal
睳
HtmlHexadecimal
睳
Url
%E7%9D%B3

Code

MD5
3a7b011dbc513d95c3a522d6714eb3a0
Sha1
a187063afcae5d2f8071f1ef2cf66dc82ec15f33
Base64
552z

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7773';
console.log(char);  // Output: 睳

Java:

char c = '\u7773';
System.out.println(c);  // Output: 睳

JSON:

{"text": "\u7773"}  // Value: 睳

Python:

char = '\u7773'
print(char)  # Output: 睳

Perl:

my $char = "\x{7773}";
print $char;  # Output: 睳

PHP:

$char = "\x{7773}";
echo $char;  // Output: 睳

Ruby:

char = "\u{7773}"
puts char  # Output: 睳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007773";  /* Display: 睳 */
}

HTML Decimal:

<p>HTML decimal: &#30579;</p>  <!-- Display: 睳 -->

HTML Hexadecimal:

<p>HTML hex: &#x7773;</p>  <!-- Display: 睳 -->

URL Encoding:

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

Encodings

MD5:

3a7b011dbc513d95c3a522d6714eb3a0

SHA1:

a187063afcae5d2f8071f1ef2cf66dc82ec15f33

Base64:

552z