Unicode Finder

"眣" U+7723(CJK UNIFIED IDEOGRAPH-7723)

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

Programming

C
\u7723
JavaScript
\u7723
Java
\u7723
Json
\u7723
Python
\u7723
Perl
\x{7723}
PHP
\x{7723}
Ruby
\u{7723}
Rust
\u{7723}
Go
\u7723

Web

CSS
\007723
HtmlDecimal
眣
HtmlHexadecimal
眣
Url
%E7%9C%A3

Code

MD5
d91ccd340c5c978b3bde596f2bde6b43
Sha1
e540097508f15081206f637e989fe22890426d2e
Base64
55yj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7723';
console.log(char);  // Output: 眣

Java:

char c = '\u7723';
System.out.println(c);  // Output: 眣

JSON:

{"text": "\u7723"}  // Value: 眣

Python:

char = '\u7723'
print(char)  # Output: 眣

Perl:

my $char = "\x{7723}";
print $char;  # Output: 眣

PHP:

$char = "\x{7723}";
echo $char;  // Output: 眣

Ruby:

char = "\u{7723}"
puts char  # Output: 眣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007723";  /* Display: 眣 */
}

HTML Decimal:

<p>HTML decimal: &#30499;</p>  <!-- Display: 眣 -->

HTML Hexadecimal:

<p>HTML hex: &#x7723;</p>  <!-- Display: 眣 -->

URL Encoding:

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

Encodings

MD5:

d91ccd340c5c978b3bde596f2bde6b43

SHA1:

e540097508f15081206f637e989fe22890426d2e

Base64:

55yj