Unicode Finder

"眃" U+7703(CJK UNIFIED IDEOGRAPH-7703)

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

Programming

C
\u7703
JavaScript
\u7703
Java
\u7703
Json
\u7703
Python
\u7703
Perl
\x{7703}
PHP
\x{7703}
Ruby
\u{7703}
Rust
\u{7703}
Go
\u7703

Web

CSS
\007703
HtmlDecimal
眃
HtmlHexadecimal
眃
Url
%E7%9C%83

Code

MD5
76d75025fd1555f21a1e0008f2885548
Sha1
123b437230964714a568bcc5ca3c92132ed0547b
Base64
55yD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7703';
console.log(char);  // Output: 眃

Java:

char c = '\u7703';
System.out.println(c);  // Output: 眃

JSON:

{"text": "\u7703"}  // Value: 眃

Python:

char = '\u7703'
print(char)  # Output: 眃

Perl:

my $char = "\x{7703}";
print $char;  # Output: 眃

PHP:

$char = "\x{7703}";
echo $char;  // Output: 眃

Ruby:

char = "\u{7703}"
puts char  # Output: 眃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007703";  /* Display: 眃 */
}

HTML Decimal:

<p>HTML decimal: &#30467;</p>  <!-- Display: 眃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7703;</p>  <!-- Display: 眃 -->

URL Encoding:

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

Encodings

MD5:

76d75025fd1555f21a1e0008f2885548

SHA1:

123b437230964714a568bcc5ca3c92132ed0547b

Base64:

55yD