Unicode Finder

"睨" U+7768(CJK UNIFIED IDEOGRAPH-7768)

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

Programming

C
\u7768
JavaScript
\u7768
Java
\u7768
Json
\u7768
Python
\u7768
Perl
\x{7768}
PHP
\x{7768}
Ruby
\u{7768}
Rust
\u{7768}
Go
\u7768

Web

CSS
\007768
HtmlDecimal
睨
HtmlHexadecimal
睨
Url
%E7%9D%A8

Code

MD5
d5a86c0e882355a231d440d6389f878e
Sha1
9f2aeaafc4a027174ee6d14271614f0e908607c6
Base64
552o

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7768';
console.log(char);  // Output: 睨

Java:

char c = '\u7768';
System.out.println(c);  // Output: 睨

JSON:

{"text": "\u7768"}  // Value: 睨

Python:

char = '\u7768'
print(char)  # Output: 睨

Perl:

my $char = "\x{7768}";
print $char;  # Output: 睨

PHP:

$char = "\x{7768}";
echo $char;  // Output: 睨

Ruby:

char = "\u{7768}"
puts char  # Output: 睨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007768";  /* Display: 睨 */
}

HTML Decimal:

<p>HTML decimal: &#30568;</p>  <!-- Display: 睨 -->

HTML Hexadecimal:

<p>HTML hex: &#x7768;</p>  <!-- Display: 睨 -->

URL Encoding:

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

Encodings

MD5:

d5a86c0e882355a231d440d6389f878e

SHA1:

9f2aeaafc4a027174ee6d14271614f0e908607c6

Base64:

552o