Unicode Finder

"栐" U+6810(CJK UNIFIED IDEOGRAPH-6810)

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

Programming

C
\u6810
JavaScript
\u6810
Java
\u6810
Json
\u6810
Python
\u6810
Perl
\x{6810}
PHP
\x{6810}
Ruby
\u{6810}
Rust
\u{6810}
Go
\u6810

Web

CSS
\006810
HtmlDecimal
栐
HtmlHexadecimal
栐
Url
%E6%A0%90

Code

MD5
77dd29af11bda6686dd6b7a59d73e245
Sha1
a10844194fc541f385c102f406f335a07fe3f549
Base64
5qCQ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6810';
console.log(char);  // Output: 栐

Java:

char c = '\u6810';
System.out.println(c);  // Output: 栐

JSON:

{"text": "\u6810"}  // Value: 栐

Python:

char = '\u6810'
print(char)  # Output: 栐

Perl:

my $char = "\x{6810}";
print $char;  # Output: 栐

PHP:

$char = "\x{6810}";
echo $char;  // Output: 栐

Ruby:

char = "\u{6810}"
puts char  # Output: 栐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006810";  /* Display: 栐 */
}

HTML Decimal:

<p>HTML decimal: &#26640;</p>  <!-- Display: 栐 -->

HTML Hexadecimal:

<p>HTML hex: &#x6810;</p>  <!-- Display: 栐 -->

URL Encoding:

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

Encodings

MD5:

77dd29af11bda6686dd6b7a59d73e245

SHA1:

a10844194fc541f385c102f406f335a07fe3f549

Base64:

5qCQ