Unicode Finder

"楇" U+6947(CJK UNIFIED IDEOGRAPH-6947)

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

Programming

C
\u6947
JavaScript
\u6947
Java
\u6947
Json
\u6947
Python
\u6947
Perl
\x{6947}
PHP
\x{6947}
Ruby
\u{6947}
Rust
\u{6947}
Go
\u6947

Web

CSS
\006947
HtmlDecimal
楇
HtmlHexadecimal
楇
Url
%E6%A5%87

Code

MD5
5ad69e9c3374c31d9a585e62bb506977
Sha1
b08bd78d057669b90fd6f8b3ba6fa980318f314f
Base64
5qWH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6947';
console.log(char);  // Output: 楇

Java:

char c = '\u6947';
System.out.println(c);  // Output: 楇

JSON:

{"text": "\u6947"}  // Value: 楇

Python:

char = '\u6947'
print(char)  # Output: 楇

Perl:

my $char = "\x{6947}";
print $char;  # Output: 楇

PHP:

$char = "\x{6947}";
echo $char;  // Output: 楇

Ruby:

char = "\u{6947}"
puts char  # Output: 楇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006947";  /* Display: 楇 */
}

HTML Decimal:

<p>HTML decimal: &#26951;</p>  <!-- Display: 楇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6947;</p>  <!-- Display: 楇 -->

URL Encoding:

// 楇 URL encoding
https://unicodefinder.com/search.php?query=%E6%A5%87

Encodings

MD5:

5ad69e9c3374c31d9a585e62bb506977

SHA1:

b08bd78d057669b90fd6f8b3ba6fa980318f314f

Base64:

5qWH