Unicode Finder

"眷" U+7737(CJK UNIFIED IDEOGRAPH-7737)

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

Programming

C
\u7737
JavaScript
\u7737
Java
\u7737
Json
\u7737
Python
\u7737
Perl
\x{7737}
PHP
\x{7737}
Ruby
\u{7737}
Rust
\u{7737}
Go
\u7737

Web

CSS
\007737
HtmlDecimal
眷
HtmlHexadecimal
眷
Url
%E7%9C%B7

Code

MD5
bf18eb3991fc83b5a9f782b85243fa02
Sha1
bfc06f5e56926944206b8046f54cb6c0a918094b
Base64
55y3

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7737';
console.log(char);  // Output: 眷

Java:

char c = '\u7737';
System.out.println(c);  // Output: 眷

JSON:

{"text": "\u7737"}  // Value: 眷

Python:

char = '\u7737'
print(char)  # Output: 眷

Perl:

my $char = "\x{7737}";
print $char;  # Output: 眷

PHP:

$char = "\x{7737}";
echo $char;  // Output: 眷

Ruby:

char = "\u{7737}"
puts char  # Output: 眷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007737";  /* Display: 眷 */
}

HTML Decimal:

<p>HTML decimal: &#30519;</p>  <!-- Display: 眷 -->

HTML Hexadecimal:

<p>HTML hex: &#x7737;</p>  <!-- Display: 眷 -->

URL Encoding:

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

Encodings

MD5:

bf18eb3991fc83b5a9f782b85243fa02

SHA1:

bfc06f5e56926944206b8046f54cb6c0a918094b

Base64:

55y3