Unicode Finder

"眒" U+7712(CJK UNIFIED IDEOGRAPH-7712)

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

Programming

C
\u7712
JavaScript
\u7712
Java
\u7712
Json
\u7712
Python
\u7712
Perl
\x{7712}
PHP
\x{7712}
Ruby
\u{7712}
Rust
\u{7712}
Go
\u7712

Web

CSS
\007712
HtmlDecimal
眒
HtmlHexadecimal
眒
Url
%E7%9C%92

Code

MD5
be7165256dbc88febedb3826de19cd85
Sha1
73e22685b3e0bfbdac90cd2f81ad21506c88a40e
Base64
55yS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7712';
console.log(char);  // Output: 眒

Java:

char c = '\u7712';
System.out.println(c);  // Output: 眒

JSON:

{"text": "\u7712"}  // Value: 眒

Python:

char = '\u7712'
print(char)  # Output: 眒

Perl:

my $char = "\x{7712}";
print $char;  # Output: 眒

PHP:

$char = "\x{7712}";
echo $char;  // Output: 眒

Ruby:

char = "\u{7712}"
puts char  # Output: 眒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007712";  /* Display: 眒 */
}

HTML Decimal:

<p>HTML decimal: &#30482;</p>  <!-- Display: 眒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7712;</p>  <!-- Display: 眒 -->

URL Encoding:

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

Encodings

MD5:

be7165256dbc88febedb3826de19cd85

SHA1:

73e22685b3e0bfbdac90cd2f81ad21506c88a40e

Base64:

55yS