Unicode Finder

"眶" U+7736(CJK UNIFIED IDEOGRAPH-7736)

U+7736
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7736

Programming

C
\u7736
JavaScript
\u7736
Java
\u7736
Json
\u7736
Python
\u7736
Perl
\x{7736}
PHP
\x{7736}
Ruby
\u{7736}
Rust
\u{7736}
Go
\u7736

Web

CSS
\007736
HtmlDecimal
眶
HtmlHexadecimal
眶
Url
%E7%9C%B6

Code

MD5
fe9b95cd0b10df11d29db11b03fe5698
Sha1
6cd9134a28fd9fd953c1c91fad44953070ec6cba
Base64
55y2

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7736';
console.log(char);  // Output: 眶

Java:

char c = '\u7736';
System.out.println(c);  // Output: 眶

JSON:

{"text": "\u7736"}  // Value: 眶

Python:

char = '\u7736'
print(char)  # Output: 眶

Perl:

my $char = "\x{7736}";
print $char;  # Output: 眶

PHP:

$char = "\x{7736}";
echo $char;  // Output: 眶

Ruby:

char = "\u{7736}"
puts char  # Output: 眶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007736";  /* Display: 眶 */
}

HTML Decimal:

<p>HTML decimal: &#30518;</p>  <!-- Display: 眶 -->

HTML Hexadecimal:

<p>HTML hex: &#x7736;</p>  <!-- Display: 眶 -->

URL Encoding:

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

Encodings

MD5:

fe9b95cd0b10df11d29db11b03fe5698

SHA1:

6cd9134a28fd9fd953c1c91fad44953070ec6cba

Base64:

55y2