Unicode Finder

"禖" U+7996(CJK UNIFIED IDEOGRAPH-7996)

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

Programming

C
\u7996
JavaScript
\u7996
Java
\u7996
Json
\u7996
Python
\u7996
Perl
\x{7996}
PHP
\x{7996}
Ruby
\u{7996}
Rust
\u{7996}
Go
\u7996

Web

CSS
\007996
HtmlDecimal
禖
HtmlHexadecimal
禖
Url
%E7%A6%96

Code

MD5
482d45d7d413bad62e82a85f71057161
Sha1
c5afc89a1f5ffa5c0948b3b8d5045e7894d42551
Base64
56aW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7996';
console.log(char);  // Output: 禖

Java:

char c = '\u7996';
System.out.println(c);  // Output: 禖

JSON:

{"text": "\u7996"}  // Value: 禖

Python:

char = '\u7996'
print(char)  # Output: 禖

Perl:

my $char = "\x{7996}";
print $char;  # Output: 禖

PHP:

$char = "\x{7996}";
echo $char;  // Output: 禖

Ruby:

char = "\u{7996}"
puts char  # Output: 禖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007996";  /* Display: 禖 */
}

HTML Decimal:

<p>HTML decimal: &#31126;</p>  <!-- Display: 禖 -->

HTML Hexadecimal:

<p>HTML hex: &#x7996;</p>  <!-- Display: 禖 -->

URL Encoding:

// 禖 URL encoding
https://unicodefinder.com/search.php?query=%E7%A6%96

Encodings

MD5:

482d45d7d413bad62e82a85f71057161

SHA1:

c5afc89a1f5ffa5c0948b3b8d5045e7894d42551

Base64:

56aW