Unicode Finder

"敄" U+6544(CJK UNIFIED IDEOGRAPH-6544)

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

Programming

C
\u6544
JavaScript
\u6544
Java
\u6544
Json
\u6544
Python
\u6544
Perl
\x{6544}
PHP
\x{6544}
Ruby
\u{6544}
Rust
\u{6544}
Go
\u6544

Web

CSS
\006544
HtmlDecimal
敄
HtmlHexadecimal
敄
Url
%E6%95%84

Code

MD5
980dca0931bb08d491c4f3d09c47b396
Sha1
f72ce6656103bfc6de0cb643d8bda84831509e2d
Base64
5pWE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6544';
console.log(char);  // Output: 敄

Java:

char c = '\u6544';
System.out.println(c);  // Output: 敄

JSON:

{"text": "\u6544"}  // Value: 敄

Python:

char = '\u6544'
print(char)  # Output: 敄

Perl:

my $char = "\x{6544}";
print $char;  # Output: 敄

PHP:

$char = "\x{6544}";
echo $char;  // Output: 敄

Ruby:

char = "\u{6544}"
puts char  # Output: 敄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006544";  /* Display: 敄 */
}

HTML Decimal:

<p>HTML decimal: &#25924;</p>  <!-- Display: 敄 -->

HTML Hexadecimal:

<p>HTML hex: &#x6544;</p>  <!-- Display: 敄 -->

URL Encoding:

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

Encodings

MD5:

980dca0931bb08d491c4f3d09c47b396

SHA1:

f72ce6656103bfc6de0cb643d8bda84831509e2d

Base64:

5pWE