Unicode Finder

"眈" U+7708(CJK UNIFIED IDEOGRAPH-7708)

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

Programming

C
\u7708
JavaScript
\u7708
Java
\u7708
Json
\u7708
Python
\u7708
Perl
\x{7708}
PHP
\x{7708}
Ruby
\u{7708}
Rust
\u{7708}
Go
\u7708

Web

CSS
\007708
HtmlDecimal
眈
HtmlHexadecimal
眈
Url
%E7%9C%88

Code

MD5
38b7122597307bc47d4a7718cfe29701
Sha1
96821c28b60feff9e70b2a2b41d9451dbfae0e05
Base64
55yI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7708';
console.log(char);  // Output: 眈

Java:

char c = '\u7708';
System.out.println(c);  // Output: 眈

JSON:

{"text": "\u7708"}  // Value: 眈

Python:

char = '\u7708'
print(char)  # Output: 眈

Perl:

my $char = "\x{7708}";
print $char;  # Output: 眈

PHP:

$char = "\x{7708}";
echo $char;  // Output: 眈

Ruby:

char = "\u{7708}"
puts char  # Output: 眈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007708";  /* Display: 眈 */
}

HTML Decimal:

<p>HTML decimal: &#30472;</p>  <!-- Display: 眈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7708;</p>  <!-- Display: 眈 -->

URL Encoding:

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

Encodings

MD5:

38b7122597307bc47d4a7718cfe29701

SHA1:

96821c28b60feff9e70b2a2b41d9451dbfae0e05

Base64:

55yI