Unicode Finder

"栂" U+6802(CJK UNIFIED IDEOGRAPH-6802)

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

Programming

C
\u6802
JavaScript
\u6802
Java
\u6802
Json
\u6802
Python
\u6802
Perl
\x{6802}
PHP
\x{6802}
Ruby
\u{6802}
Rust
\u{6802}
Go
\u6802

Web

CSS
\006802
HtmlDecimal
栂
HtmlHexadecimal
栂
Url
%E6%A0%82

Code

MD5
269b04d25f79bb565de6940cd22b5780
Sha1
653cb22b5b515828fe253895cdfc9d749163392c
Base64
5qCC

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6802';
console.log(char);  // Output: 栂

Java:

char c = '\u6802';
System.out.println(c);  // Output: 栂

JSON:

{"text": "\u6802"}  // Value: 栂

Python:

char = '\u6802'
print(char)  # Output: 栂

Perl:

my $char = "\x{6802}";
print $char;  # Output: 栂

PHP:

$char = "\x{6802}";
echo $char;  // Output: 栂

Ruby:

char = "\u{6802}"
puts char  # Output: 栂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006802";  /* Display: 栂 */
}

HTML Decimal:

<p>HTML decimal: &#26626;</p>  <!-- Display: 栂 -->

HTML Hexadecimal:

<p>HTML hex: &#x6802;</p>  <!-- Display: 栂 -->

URL Encoding:

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

Encodings

MD5:

269b04d25f79bb565de6940cd22b5780

SHA1:

653cb22b5b515828fe253895cdfc9d749163392c

Base64:

5qCC