Unicode Finder

"栁" U+6801(CJK UNIFIED IDEOGRAPH-6801)

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

Programming

C
\u6801
JavaScript
\u6801
Java
\u6801
Json
\u6801
Python
\u6801
Perl
\x{6801}
PHP
\x{6801}
Ruby
\u{6801}
Rust
\u{6801}
Go
\u6801

Web

CSS
\006801
HtmlDecimal
栁
HtmlHexadecimal
栁
Url
%E6%A0%81

Code

MD5
cc37ac496eddcb10a18d03160dd2e7d3
Sha1
cd97babede8b0dc7f974508f139a9e2040d98c98
Base64
5qCB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6801';
console.log(char);  // Output: 栁

Java:

char c = '\u6801';
System.out.println(c);  // Output: 栁

JSON:

{"text": "\u6801"}  // Value: 栁

Python:

char = '\u6801'
print(char)  # Output: 栁

Perl:

my $char = "\x{6801}";
print $char;  # Output: 栁

PHP:

$char = "\x{6801}";
echo $char;  // Output: 栁

Ruby:

char = "\u{6801}"
puts char  # Output: 栁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006801";  /* Display: 栁 */
}

HTML Decimal:

<p>HTML decimal: &#26625;</p>  <!-- Display: 栁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6801;</p>  <!-- Display: 栁 -->

URL Encoding:

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

Encodings

MD5:

cc37ac496eddcb10a18d03160dd2e7d3

SHA1:

cd97babede8b0dc7f974508f139a9e2040d98c98

Base64:

5qCB