Unicode Finder

"桖" U+6856(CJK UNIFIED IDEOGRAPH-6856)

U+6856
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-6856

Programming

C
\u6856
JavaScript
\u6856
Java
\u6856
Json
\u6856
Python
\u6856
Perl
\x{6856}
PHP
\x{6856}
Ruby
\u{6856}
Rust
\u{6856}
Go
\u6856

Web

CSS
\006856
HtmlDecimal
桖
HtmlHexadecimal
桖
Url
%E6%A1%96

Code

MD5
cc2f6d29e429376fb4de8d230f6f022a
Sha1
d5073effb374629c5da061b75893b90c423c44e5
Base64
5qGW

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6856';
console.log(char);  // Output: 桖

Java:

char c = '\u6856';
System.out.println(c);  // Output: 桖

JSON:

{"text": "\u6856"}  // Value: 桖

Python:

char = '\u6856'
print(char)  # Output: 桖

Perl:

my $char = "\x{6856}";
print $char;  # Output: 桖

PHP:

$char = "\x{6856}";
echo $char;  // Output: 桖

Ruby:

char = "\u{6856}"
puts char  # Output: 桖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006856";  /* Display: 桖 */
}

HTML Decimal:

<p>HTML decimal: &#26710;</p>  <!-- Display: 桖 -->

HTML Hexadecimal:

<p>HTML hex: &#x6856;</p>  <!-- Display: 桖 -->

URL Encoding:

// 桖 URL encoding
https://unicodefinder.com/search.php?query=%E6%A1%96

Encodings

MD5:

cc2f6d29e429376fb4de8d230f6f022a

SHA1:

d5073effb374629c5da061b75893b90c423c44e5

Base64:

5qGW