Unicode Finder

"杷" U+6777(CJK UNIFIED IDEOGRAPH-6777)

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

Programming

C
\u6777
JavaScript
\u6777
Java
\u6777
Json
\u6777
Python
\u6777
Perl
\x{6777}
PHP
\x{6777}
Ruby
\u{6777}
Rust
\u{6777}
Go
\u6777

Web

CSS
\006777
HtmlDecimal
杷
HtmlHexadecimal
杷
Url
%E6%9D%B7

Code

MD5
a9104ded34f380ef3aaab7a8e99e2fe4
Sha1
6f181df250292c1053e3ed1abeaadd158f59d53e
Base64
5p23

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6777';
console.log(char);  // Output: 杷

Java:

char c = '\u6777';
System.out.println(c);  // Output: 杷

JSON:

{"text": "\u6777"}  // Value: 杷

Python:

char = '\u6777'
print(char)  # Output: 杷

Perl:

my $char = "\x{6777}";
print $char;  # Output: 杷

PHP:

$char = "\x{6777}";
echo $char;  // Output: 杷

Ruby:

char = "\u{6777}"
puts char  # Output: 杷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006777";  /* Display: 杷 */
}

HTML Decimal:

<p>HTML decimal: &#26487;</p>  <!-- Display: 杷 -->

HTML Hexadecimal:

<p>HTML hex: &#x6777;</p>  <!-- Display: 杷 -->

URL Encoding:

// 杷 URL encoding
https://unicodefinder.com/search.php?query=%E6%9D%B7

Encodings

MD5:

a9104ded34f380ef3aaab7a8e99e2fe4

SHA1:

6f181df250292c1053e3ed1abeaadd158f59d53e

Base64:

5p23