Unicode Finder

"枇" U+6787(CJK UNIFIED IDEOGRAPH-6787)

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

Programming

C
\u6787
JavaScript
\u6787
Java
\u6787
Json
\u6787
Python
\u6787
Perl
\x{6787}
PHP
\x{6787}
Ruby
\u{6787}
Rust
\u{6787}
Go
\u6787

Web

CSS
\006787
HtmlDecimal
枇
HtmlHexadecimal
枇
Url
%E6%9E%87

Code

MD5
1423fc7215427db9cedff07601dfdfac
Sha1
9377e1e3cb653ed0c374fd0fa8b43092c1aa7d53
Base64
5p6H

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6787';
console.log(char);  // Output: 枇

Java:

char c = '\u6787';
System.out.println(c);  // Output: 枇

JSON:

{"text": "\u6787"}  // Value: 枇

Python:

char = '\u6787'
print(char)  # Output: 枇

Perl:

my $char = "\x{6787}";
print $char;  # Output: 枇

PHP:

$char = "\x{6787}";
echo $char;  // Output: 枇

Ruby:

char = "\u{6787}"
puts char  # Output: 枇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006787";  /* Display: 枇 */
}

HTML Decimal:

<p>HTML decimal: &#26503;</p>  <!-- Display: 枇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6787;</p>  <!-- Display: 枇 -->

URL Encoding:

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

Encodings

MD5:

1423fc7215427db9cedff07601dfdfac

SHA1:

9377e1e3cb653ed0c374fd0fa8b43092c1aa7d53

Base64:

5p6H