Unicode Finder

"眸" U+7738(CJK UNIFIED IDEOGRAPH-7738)

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

Programming

C
\u7738
JavaScript
\u7738
Java
\u7738
Json
\u7738
Python
\u7738
Perl
\x{7738}
PHP
\x{7738}
Ruby
\u{7738}
Rust
\u{7738}
Go
\u7738

Web

CSS
\007738
HtmlDecimal
眸
HtmlHexadecimal
眸
Url
%E7%9C%B8

Code

MD5
176f3d56f9f3c6efb48dab801b87d0b3
Sha1
cf4736284f9503261d49037a83d785774903eece
Base64
55y4

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7738';
console.log(char);  // Output: 眸

Java:

char c = '\u7738';
System.out.println(c);  // Output: 眸

JSON:

{"text": "\u7738"}  // Value: 眸

Python:

char = '\u7738'
print(char)  # Output: 眸

Perl:

my $char = "\x{7738}";
print $char;  # Output: 眸

PHP:

$char = "\x{7738}";
echo $char;  // Output: 眸

Ruby:

char = "\u{7738}"
puts char  # Output: 眸

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007738";  /* Display: 眸 */
}

HTML Decimal:

<p>HTML decimal: &#30520;</p>  <!-- Display: 眸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7738;</p>  <!-- Display: 眸 -->

URL Encoding:

// 眸 URL encoding
https://unicodefinder.com/search.php?query=%E7%9C%B8

Encodings

MD5:

176f3d56f9f3c6efb48dab801b87d0b3

SHA1:

cf4736284f9503261d49037a83d785774903eece

Base64:

55y4