Unicode Finder

"桗" U+6857(CJK UNIFIED IDEOGRAPH-6857)

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

Programming

C
\u6857
JavaScript
\u6857
Java
\u6857
Json
\u6857
Python
\u6857
Perl
\x{6857}
PHP
\x{6857}
Ruby
\u{6857}
Rust
\u{6857}
Go
\u6857

Web

CSS
\006857
HtmlDecimal
桗
HtmlHexadecimal
桗
Url
%E6%A1%97

Code

MD5
00b86dc56b622bdeeee829aa636e6754
Sha1
451a38bb966e1f4d524f229e3fa9d69605f6474f
Base64
5qGX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6857';
console.log(char);  // Output: 桗

Java:

char c = '\u6857';
System.out.println(c);  // Output: 桗

JSON:

{"text": "\u6857"}  // Value: 桗

Python:

char = '\u6857'
print(char)  # Output: 桗

Perl:

my $char = "\x{6857}";
print $char;  # Output: 桗

PHP:

$char = "\x{6857}";
echo $char;  // Output: 桗

Ruby:

char = "\u{6857}"
puts char  # Output: 桗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006857";  /* Display: 桗 */
}

HTML Decimal:

<p>HTML decimal: &#26711;</p>  <!-- Display: 桗 -->

HTML Hexadecimal:

<p>HTML hex: &#x6857;</p>  <!-- Display: 桗 -->

URL Encoding:

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

Encodings

MD5:

00b86dc56b622bdeeee829aa636e6754

SHA1:

451a38bb966e1f4d524f229e3fa9d69605f6474f

Base64:

5qGX