Unicode Finder

"碖" U+7896(CJK UNIFIED IDEOGRAPH-7896)

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

Programming

C
\u7896
JavaScript
\u7896
Java
\u7896
Json
\u7896
Python
\u7896
Perl
\x{7896}
PHP
\x{7896}
Ruby
\u{7896}
Rust
\u{7896}
Go
\u7896

Web

CSS
\007896
HtmlDecimal
碖
HtmlHexadecimal
碖
Url
%E7%A2%96

Code

MD5
a49222053440b3e614b1414a4787df79
Sha1
bc4610337a44292d0b3a8941bd7b24e6dfbd7000
Base64
56KW

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7896';
console.log(char);  // Output: 碖

Java:

char c = '\u7896';
System.out.println(c);  // Output: 碖

JSON:

{"text": "\u7896"}  // Value: 碖

Python:

char = '\u7896'
print(char)  # Output: 碖

Perl:

my $char = "\x{7896}";
print $char;  # Output: 碖

PHP:

$char = "\x{7896}";
echo $char;  // Output: 碖

Ruby:

char = "\u{7896}"
puts char  # Output: 碖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007896";  /* Display: 碖 */
}

HTML Decimal:

<p>HTML decimal: &#30870;</p>  <!-- Display: 碖 -->

HTML Hexadecimal:

<p>HTML hex: &#x7896;</p>  <!-- Display: 碖 -->

URL Encoding:

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

Encodings

MD5:

a49222053440b3e614b1414a4787df79

SHA1:

bc4610337a44292d0b3a8941bd7b24e6dfbd7000

Base64:

56KW