Unicode Finder

"楄" U+6944(CJK UNIFIED IDEOGRAPH-6944)

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

Programming

C
\u6944
JavaScript
\u6944
Java
\u6944
Json
\u6944
Python
\u6944
Perl
\x{6944}
PHP
\x{6944}
Ruby
\u{6944}
Rust
\u{6944}
Go
\u6944

Web

CSS
\006944
HtmlDecimal
楄
HtmlHexadecimal
楄
Url
%E6%A5%84

Code

MD5
1934430e057d9ef67d1b9a1696985212
Sha1
7209f32ebe393ba6a7faa6bbabe82cf745bde0b4
Base64
5qWE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6944';
console.log(char);  // Output: 楄

Java:

char c = '\u6944';
System.out.println(c);  // Output: 楄

JSON:

{"text": "\u6944"}  // Value: 楄

Python:

char = '\u6944'
print(char)  # Output: 楄

Perl:

my $char = "\x{6944}";
print $char;  # Output: 楄

PHP:

$char = "\x{6944}";
echo $char;  // Output: 楄

Ruby:

char = "\u{6944}"
puts char  # Output: 楄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006944";  /* Display: 楄 */
}

HTML Decimal:

<p>HTML decimal: &#26948;</p>  <!-- Display: 楄 -->

HTML Hexadecimal:

<p>HTML hex: &#x6944;</p>  <!-- Display: 楄 -->

URL Encoding:

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

Encodings

MD5:

1934430e057d9ef67d1b9a1696985212

SHA1:

7209f32ebe393ba6a7faa6bbabe82cf745bde0b4

Base64:

5qWE