Unicode Finder

"桠" U+6860(CJK UNIFIED IDEOGRAPH-6860)

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

Programming

C
\u6860
JavaScript
\u6860
Java
\u6860
Json
\u6860
Python
\u6860
Perl
\x{6860}
PHP
\x{6860}
Ruby
\u{6860}
Rust
\u{6860}
Go
\u6860

Web

CSS
\006860
HtmlDecimal
桠
HtmlHexadecimal
桠
Url
%E6%A1%A0

Code

MD5
4a96d5f34ed8813ed5e034d302d78168
Sha1
1087e011cb30a03999ff01383eaa5d2f2986e1a3
Base64
5qGg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6860';
console.log(char);  // Output: 桠

Java:

char c = '\u6860';
System.out.println(c);  // Output: 桠

JSON:

{"text": "\u6860"}  // Value: 桠

Python:

char = '\u6860'
print(char)  # Output: 桠

Perl:

my $char = "\x{6860}";
print $char;  # Output: 桠

PHP:

$char = "\x{6860}";
echo $char;  // Output: 桠

Ruby:

char = "\u{6860}"
puts char  # Output: 桠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006860";  /* Display: 桠 */
}

HTML Decimal:

<p>HTML decimal: &#26720;</p>  <!-- Display: 桠 -->

HTML Hexadecimal:

<p>HTML hex: &#x6860;</p>  <!-- Display: 桠 -->

URL Encoding:

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

Encodings

MD5:

4a96d5f34ed8813ed5e034d302d78168

SHA1:

1087e011cb30a03999ff01383eaa5d2f2986e1a3

Base64:

5qGg