Unicode Finder

"栤" U+6824(CJK UNIFIED IDEOGRAPH-6824)

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

Programming

C
\u6824
JavaScript
\u6824
Java
\u6824
Json
\u6824
Python
\u6824
Perl
\x{6824}
PHP
\x{6824}
Ruby
\u{6824}
Rust
\u{6824}
Go
\u6824

Web

CSS
\006824
HtmlDecimal
栤
HtmlHexadecimal
栤
Url
%E6%A0%A4

Code

MD5
6d8014a40822b342ec29de08192e8162
Sha1
62de8b4cc9a5282a123beaff9603cf599ef4b2c6
Base64
5qCk

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6824';
console.log(char);  // Output: 栤

Java:

char c = '\u6824';
System.out.println(c);  // Output: 栤

JSON:

{"text": "\u6824"}  // Value: 栤

Python:

char = '\u6824'
print(char)  # Output: 栤

Perl:

my $char = "\x{6824}";
print $char;  # Output: 栤

PHP:

$char = "\x{6824}";
echo $char;  // Output: 栤

Ruby:

char = "\u{6824}"
puts char  # Output: 栤

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006824";  /* Display: 栤 */
}

HTML Decimal:

<p>HTML decimal: &#26660;</p>  <!-- Display: 栤 -->

HTML Hexadecimal:

<p>HTML hex: &#x6824;</p>  <!-- Display: 栤 -->

URL Encoding:

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

Encodings

MD5:

6d8014a40822b342ec29de08192e8162

SHA1:

62de8b4cc9a5282a123beaff9603cf599ef4b2c6

Base64:

5qCk