Unicode Finder

"栠" U+6820(CJK UNIFIED IDEOGRAPH-6820)

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

Programming

C
\u6820
JavaScript
\u6820
Java
\u6820
Json
\u6820
Python
\u6820
Perl
\x{6820}
PHP
\x{6820}
Ruby
\u{6820}
Rust
\u{6820}
Go
\u6820

Web

CSS
\006820
HtmlDecimal
栠
HtmlHexadecimal
栠
Url
%E6%A0%A0

Code

MD5
a61fe4345356b422d6e50c1341205557
Sha1
ec1fab2e19a9125354ec7f1e865b8f451f4a9d7d
Base64
5qCg

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6820';
console.log(char);  // Output: 栠

Java:

char c = '\u6820';
System.out.println(c);  // Output: 栠

JSON:

{"text": "\u6820"}  // Value: 栠

Python:

char = '\u6820'
print(char)  # Output: 栠

Perl:

my $char = "\x{6820}";
print $char;  # Output: 栠

PHP:

$char = "\x{6820}";
echo $char;  // Output: 栠

Ruby:

char = "\u{6820}"
puts char  # Output: 栠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006820";  /* Display: 栠 */
}

HTML Decimal:

<p>HTML decimal: &#26656;</p>  <!-- Display: 栠 -->

HTML Hexadecimal:

<p>HTML hex: &#x6820;</p>  <!-- Display: 栠 -->

URL Encoding:

// 栠 URL encoding
https://unicodefinder.com/search.php?query=%E6%A0%A0

Encodings

MD5:

a61fe4345356b422d6e50c1341205557

SHA1:

ec1fab2e19a9125354ec7f1e865b8f451f4a9d7d

Base64:

5qCg