Unicode Finder

"栦" U+6826(CJK UNIFIED IDEOGRAPH-6826)

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

Programming

C
\u6826
JavaScript
\u6826
Java
\u6826
Json
\u6826
Python
\u6826
Perl
\x{6826}
PHP
\x{6826}
Ruby
\u{6826}
Rust
\u{6826}
Go
\u6826

Web

CSS
\006826
HtmlDecimal
栦
HtmlHexadecimal
栦
Url
%E6%A0%A6

Code

MD5
69e65e26128a55f8f1e6d52d27e4ac3b
Sha1
28ae5b96324f21bf4206c7fcb6055704c21c319c
Base64
5qCm

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6826';
console.log(char);  // Output: 栦

Java:

char c = '\u6826';
System.out.println(c);  // Output: 栦

JSON:

{"text": "\u6826"}  // Value: 栦

Python:

char = '\u6826'
print(char)  # Output: 栦

Perl:

my $char = "\x{6826}";
print $char;  # Output: 栦

PHP:

$char = "\x{6826}";
echo $char;  // Output: 栦

Ruby:

char = "\u{6826}"
puts char  # Output: 栦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006826";  /* Display: 栦 */
}

HTML Decimal:

<p>HTML decimal: &#26662;</p>  <!-- Display: 栦 -->

HTML Hexadecimal:

<p>HTML hex: &#x6826;</p>  <!-- Display: 栦 -->

URL Encoding:

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

Encodings

MD5:

69e65e26128a55f8f1e6d52d27e4ac3b

SHA1:

28ae5b96324f21bf4206c7fcb6055704c21c319c

Base64:

5qCm