Unicode Finder

"眮" U+772E(CJK UNIFIED IDEOGRAPH-772E)

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

Programming

C
\u772E
JavaScript
\u772E
Java
\u772E
Json
\u772E
Python
\u772E
Perl
\x{772E}
PHP
\x{772E}
Ruby
\u{772E}
Rust
\u{772E}
Go
\u772E

Web

CSS
\00772E
HtmlDecimal
眮
HtmlHexadecimal
眮
Url
%E7%9C%AE

Code

MD5
7f4eacee5c5fbdac76ac2284f022dfc6
Sha1
52a9bf325f4a16425ca63ca4541cda8b93b1ea70
Base64
55yu

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u772E';
console.log(char);  // Output: 眮

Java:

char c = '\u772E';
System.out.println(c);  // Output: 眮

JSON:

{"text": "\u772E"}  // Value: 眮

Python:

char = '\u772E'
print(char)  # Output: 眮

Perl:

my $char = "\x{772E}";
print $char;  # Output: 眮

PHP:

$char = "\x{772E}";
echo $char;  // Output: 眮

Ruby:

char = "\u{772E}"
puts char  # Output: 眮

Rust:

let c = '\u{772E}';
println!("{}", c);  // Output: 眮

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00772E";  /* Display: 眮 */
}

HTML Decimal:

<p>HTML decimal: &#30510;</p>  <!-- Display: 眮 -->

HTML Hexadecimal:

<p>HTML hex: &#x772E;</p>  <!-- Display: 眮 -->

URL Encoding:

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

Encodings

MD5:

7f4eacee5c5fbdac76ac2284f022dfc6

SHA1:

52a9bf325f4a16425ca63ca4541cda8b93b1ea70

Base64:

55yu