Unicode Finder

"桑" U+6851(CJK UNIFIED IDEOGRAPH-6851)

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

Programming

C
\u6851
JavaScript
\u6851
Java
\u6851
Json
\u6851
Python
\u6851
Perl
\x{6851}
PHP
\x{6851}
Ruby
\u{6851}
Rust
\u{6851}
Go
\u6851

Web

CSS
\006851
HtmlDecimal
桑
HtmlHexadecimal
桑
Url
%E6%A1%91

Code

MD5
33c85347f7b8e1749ab6b198b174dcee
Sha1
99137b7c9d614fc3d8d26f5da30ed865e7d3452d
Base64
5qGR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6851';
console.log(char);  // Output: 桑

Java:

char c = '\u6851';
System.out.println(c);  // Output: 桑

JSON:

{"text": "\u6851"}  // Value: 桑

Python:

char = '\u6851'
print(char)  # Output: 桑

Perl:

my $char = "\x{6851}";
print $char;  # Output: 桑

PHP:

$char = "\x{6851}";
echo $char;  // Output: 桑

Ruby:

char = "\u{6851}"
puts char  # Output: 桑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006851";  /* Display: 桑 */
}

HTML Decimal:

<p>HTML decimal: &#26705;</p>  <!-- Display: 桑 -->

HTML Hexadecimal:

<p>HTML hex: &#x6851;</p>  <!-- Display: 桑 -->

URL Encoding:

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

Encodings

MD5:

33c85347f7b8e1749ab6b198b174dcee

SHA1:

99137b7c9d614fc3d8d26f5da30ed865e7d3452d

Base64:

5qGR