Unicode Finder

"敇" U+6547(CJK UNIFIED IDEOGRAPH-6547)

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

Programming

C
\u6547
JavaScript
\u6547
Java
\u6547
Json
\u6547
Python
\u6547
Perl
\x{6547}
PHP
\x{6547}
Ruby
\u{6547}
Rust
\u{6547}
Go
\u6547

Web

CSS
\006547
HtmlDecimal
敇
HtmlHexadecimal
敇
Url
%E6%95%87

Code

MD5
6b826be5a0ffecc031304623a0098f48
Sha1
2400d14e55c2510244e018e83f68f0ba23699d41
Base64
5pWH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6547';
console.log(char);  // Output: 敇

Java:

char c = '\u6547';
System.out.println(c);  // Output: 敇

JSON:

{"text": "\u6547"}  // Value: 敇

Python:

char = '\u6547'
print(char)  # Output: 敇

Perl:

my $char = "\x{6547}";
print $char;  # Output: 敇

PHP:

$char = "\x{6547}";
echo $char;  // Output: 敇

Ruby:

char = "\u{6547}"
puts char  # Output: 敇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006547";  /* Display: 敇 */
}

HTML Decimal:

<p>HTML decimal: &#25927;</p>  <!-- Display: 敇 -->

HTML Hexadecimal:

<p>HTML hex: &#x6547;</p>  <!-- Display: 敇 -->

URL Encoding:

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

Encodings

MD5:

6b826be5a0ffecc031304623a0098f48

SHA1:

2400d14e55c2510244e018e83f68f0ba23699d41

Base64:

5pWH