Unicode Finder

"睥" U+7765(CJK UNIFIED IDEOGRAPH-7765)

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

Programming

C
\u7765
JavaScript
\u7765
Java
\u7765
Json
\u7765
Python
\u7765
Perl
\x{7765}
PHP
\x{7765}
Ruby
\u{7765}
Rust
\u{7765}
Go
\u7765

Web

CSS
\007765
HtmlDecimal
睥
HtmlHexadecimal
睥
Url
%E7%9D%A5

Code

MD5
ca33d2906920a3d60adc74072260e136
Sha1
2eade5a228208171797d95efcfda4e260a406b97
Base64
552l

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7765';
console.log(char);  // Output: 睥

Java:

char c = '\u7765';
System.out.println(c);  // Output: 睥

JSON:

{"text": "\u7765"}  // Value: 睥

Python:

char = '\u7765'
print(char)  # Output: 睥

Perl:

my $char = "\x{7765}";
print $char;  # Output: 睥

PHP:

$char = "\x{7765}";
echo $char;  // Output: 睥

Ruby:

char = "\u{7765}"
puts char  # Output: 睥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007765";  /* Display: 睥 */
}

HTML Decimal:

<p>HTML decimal: &#30565;</p>  <!-- Display: 睥 -->

HTML Hexadecimal:

<p>HTML hex: &#x7765;</p>  <!-- Display: 睥 -->

URL Encoding:

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

Encodings

MD5:

ca33d2906920a3d60adc74072260e136

SHA1:

2eade5a228208171797d95efcfda4e260a406b97

Base64:

552l