Unicode Finder

"楈" U+6948(CJK UNIFIED IDEOGRAPH-6948)

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

Programming

C
\u6948
JavaScript
\u6948
Java
\u6948
Json
\u6948
Python
\u6948
Perl
\x{6948}
PHP
\x{6948}
Ruby
\u{6948}
Rust
\u{6948}
Go
\u6948

Web

CSS
\006948
HtmlDecimal
楈
HtmlHexadecimal
楈
Url
%E6%A5%88

Code

MD5
81fee88d9236df69730e7c1bae587e7d
Sha1
e568c984fc8a734a66fedf978c8dbd708db2bf7b
Base64
5qWI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6948';
console.log(char);  // Output: 楈

Java:

char c = '\u6948';
System.out.println(c);  // Output: 楈

JSON:

{"text": "\u6948"}  // Value: 楈

Python:

char = '\u6948'
print(char)  # Output: 楈

Perl:

my $char = "\x{6948}";
print $char;  # Output: 楈

PHP:

$char = "\x{6948}";
echo $char;  // Output: 楈

Ruby:

char = "\u{6948}"
puts char  # Output: 楈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006948";  /* Display: 楈 */
}

HTML Decimal:

<p>HTML decimal: &#26952;</p>  <!-- Display: 楈 -->

HTML Hexadecimal:

<p>HTML hex: &#x6948;</p>  <!-- Display: 楈 -->

URL Encoding:

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

Encodings

MD5:

81fee88d9236df69730e7c1bae587e7d

SHA1:

e568c984fc8a734a66fedf978c8dbd708db2bf7b

Base64:

5qWI