Unicode Finder

"枈" U+6788(CJK UNIFIED IDEOGRAPH-6788)

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

Programming

C
\u6788
JavaScript
\u6788
Java
\u6788
Json
\u6788
Python
\u6788
Perl
\x{6788}
PHP
\x{6788}
Ruby
\u{6788}
Rust
\u{6788}
Go
\u6788

Web

CSS
\006788
HtmlDecimal
枈
HtmlHexadecimal
枈
Url
%E6%9E%88

Code

MD5
b1dbde36b65c3d8b69ada4669c2a5f24
Sha1
bdac10129462ac799ddf2dae03020b542f79db85
Base64
5p6I

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6788';
console.log(char);  // Output: 枈

Java:

char c = '\u6788';
System.out.println(c);  // Output: 枈

JSON:

{"text": "\u6788"}  // Value: 枈

Python:

char = '\u6788'
print(char)  # Output: 枈

Perl:

my $char = "\x{6788}";
print $char;  # Output: 枈

PHP:

$char = "\x{6788}";
echo $char;  // Output: 枈

Ruby:

char = "\u{6788}"
puts char  # Output: 枈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006788";  /* Display: 枈 */
}

HTML Decimal:

<p>HTML decimal: &#26504;</p>  <!-- Display: 枈 -->

HTML Hexadecimal:

<p>HTML hex: &#x6788;</p>  <!-- Display: 枈 -->

URL Encoding:

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

Encodings

MD5:

b1dbde36b65c3d8b69ada4669c2a5f24

SHA1:

bdac10129462ac799ddf2dae03020b542f79db85

Base64:

5p6I