Unicode Finder

"枖" U+6796(CJK UNIFIED IDEOGRAPH-6796)

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

Programming

C
\u6796
JavaScript
\u6796
Java
\u6796
Json
\u6796
Python
\u6796
Perl
\x{6796}
PHP
\x{6796}
Ruby
\u{6796}
Rust
\u{6796}
Go
\u6796

Web

CSS
\006796
HtmlDecimal
枖
HtmlHexadecimal
枖
Url
%E6%9E%96

Code

MD5
ddbab398159670803075e45230808dc3
Sha1
8ca5201ae89de0229f31272a54fb636898ac2386
Base64
5p6W

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6796';
console.log(char);  // Output: 枖

Java:

char c = '\u6796';
System.out.println(c);  // Output: 枖

JSON:

{"text": "\u6796"}  // Value: 枖

Python:

char = '\u6796'
print(char)  # Output: 枖

Perl:

my $char = "\x{6796}";
print $char;  # Output: 枖

PHP:

$char = "\x{6796}";
echo $char;  // Output: 枖

Ruby:

char = "\u{6796}"
puts char  # Output: 枖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006796";  /* Display: 枖 */
}

HTML Decimal:

<p>HTML decimal: &#26518;</p>  <!-- Display: 枖 -->

HTML Hexadecimal:

<p>HTML hex: &#x6796;</p>  <!-- Display: 枖 -->

URL Encoding:

// 枖 URL encoding
https://unicodefinder.com/search.php?query=%E6%9E%96

Encodings

MD5:

ddbab398159670803075e45230808dc3

SHA1:

8ca5201ae89de0229f31272a54fb636898ac2386

Base64:

5p6W