Unicode Finder

"枀" U+6780(CJK UNIFIED IDEOGRAPH-6780)

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

Programming

C
\u6780
JavaScript
\u6780
Java
\u6780
Json
\u6780
Python
\u6780
Perl
\x{6780}
PHP
\x{6780}
Ruby
\u{6780}
Rust
\u{6780}
Go
\u6780

Web

CSS
\006780
HtmlDecimal
枀
HtmlHexadecimal
枀
Url
%E6%9E%80

Code

MD5
9714e99fcad7d6eb64995e0623a20568
Sha1
9dcf001484d513a9e66b7f40e4b2b79732464c9a
Base64
5p6A

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6780';
console.log(char);  // Output: 枀

Java:

char c = '\u6780';
System.out.println(c);  // Output: 枀

JSON:

{"text": "\u6780"}  // Value: 枀

Python:

char = '\u6780'
print(char)  # Output: 枀

Perl:

my $char = "\x{6780}";
print $char;  # Output: 枀

PHP:

$char = "\x{6780}";
echo $char;  // Output: 枀

Ruby:

char = "\u{6780}"
puts char  # Output: 枀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006780";  /* Display: 枀 */
}

HTML Decimal:

<p>HTML decimal: &#26496;</p>  <!-- Display: 枀 -->

HTML Hexadecimal:

<p>HTML hex: &#x6780;</p>  <!-- Display: 枀 -->

URL Encoding:

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

Encodings

MD5:

9714e99fcad7d6eb64995e0623a20568

SHA1:

9dcf001484d513a9e66b7f40e4b2b79732464c9a

Base64:

5p6A