Unicode Finder

"敉" U+6549(CJK UNIFIED IDEOGRAPH-6549)

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

Programming

C
\u6549
JavaScript
\u6549
Java
\u6549
Json
\u6549
Python
\u6549
Perl
\x{6549}
PHP
\x{6549}
Ruby
\u{6549}
Rust
\u{6549}
Go
\u6549

Web

CSS
\006549
HtmlDecimal
敉
HtmlHexadecimal
敉
Url
%E6%95%89

Code

MD5
0944e356883d6d464a7404ebf0fb5648
Sha1
d00a27d0c4fa0a1b660d099d8fa075ade4446c2d
Base64
5pWJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6549';
console.log(char);  // Output: 敉

Java:

char c = '\u6549';
System.out.println(c);  // Output: 敉

JSON:

{"text": "\u6549"}  // Value: 敉

Python:

char = '\u6549'
print(char)  # Output: 敉

Perl:

my $char = "\x{6549}";
print $char;  # Output: 敉

PHP:

$char = "\x{6549}";
echo $char;  // Output: 敉

Ruby:

char = "\u{6549}"
puts char  # Output: 敉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006549";  /* Display: 敉 */
}

HTML Decimal:

<p>HTML decimal: &#25929;</p>  <!-- Display: 敉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6549;</p>  <!-- Display: 敉 -->

URL Encoding:

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

Encodings

MD5:

0944e356883d6d464a7404ebf0fb5648

SHA1:

d00a27d0c4fa0a1b660d099d8fa075ade4446c2d

Base64:

5pWJ