Unicode Finder

"睇" U+7747(CJK UNIFIED IDEOGRAPH-7747)

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

Programming

C
\u7747
JavaScript
\u7747
Java
\u7747
Json
\u7747
Python
\u7747
Perl
\x{7747}
PHP
\x{7747}
Ruby
\u{7747}
Rust
\u{7747}
Go
\u7747

Web

CSS
\007747
HtmlDecimal
睇
HtmlHexadecimal
睇
Url
%E7%9D%87

Code

MD5
79b0ab0dbb0b9aaef89e3bac7c7f49b6
Sha1
787e243bebf381ee02a699d15cee363d0e201c25
Base64
552H

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7747';
console.log(char);  // Output: 睇

Java:

char c = '\u7747';
System.out.println(c);  // Output: 睇

JSON:

{"text": "\u7747"}  // Value: 睇

Python:

char = '\u7747'
print(char)  # Output: 睇

Perl:

my $char = "\x{7747}";
print $char;  # Output: 睇

PHP:

$char = "\x{7747}";
echo $char;  // Output: 睇

Ruby:

char = "\u{7747}"
puts char  # Output: 睇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007747";  /* Display: 睇 */
}

HTML Decimal:

<p>HTML decimal: &#30535;</p>  <!-- Display: 睇 -->

HTML Hexadecimal:

<p>HTML hex: &#x7747;</p>  <!-- Display: 睇 -->

URL Encoding:

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

Encodings

MD5:

79b0ab0dbb0b9aaef89e3bac7c7f49b6

SHA1:

787e243bebf381ee02a699d15cee363d0e201c25

Base64:

552H