Unicode Finder

"敌" U+654C(CJK UNIFIED IDEOGRAPH-654C)

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

Programming

C
\u654C
JavaScript
\u654C
Java
\u654C
Json
\u654C
Python
\u654C
Perl
\x{654C}
PHP
\x{654C}
Ruby
\u{654C}
Rust
\u{654C}
Go
\u654C

Web

CSS
\00654C
HtmlDecimal
敌
HtmlHexadecimal
敌
Url
%E6%95%8C

Code

MD5
16dfa0397fc0b021fedb5369974d7863
Sha1
1729f61b01d36cb1bf13ef5dae83a9215ceac271
Base64
5pWM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u654C';
console.log(char);  // Output: 敌

Java:

char c = '\u654C';
System.out.println(c);  // Output: 敌

JSON:

{"text": "\u654C"}  // Value: 敌

Python:

char = '\u654C'
print(char)  # Output: 敌

Perl:

my $char = "\x{654C}";
print $char;  # Output: 敌

PHP:

$char = "\x{654C}";
echo $char;  // Output: 敌

Ruby:

char = "\u{654C}"
puts char  # Output: 敌

Rust:

let c = '\u{654C}';
println!("{}", c);  // Output: 敌

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00654C";  /* Display: 敌 */
}

HTML Decimal:

<p>HTML decimal: &#25932;</p>  <!-- Display: 敌 -->

HTML Hexadecimal:

<p>HTML hex: &#x654C;</p>  <!-- Display: 敌 -->

URL Encoding:

// 敌 URL encoding
https://unicodefinder.com/search.php?query=%E6%95%8C

Encodings

MD5:

16dfa0397fc0b021fedb5369974d7863

SHA1:

1729f61b01d36cb1bf13ef5dae83a9215ceac271

Base64:

5pWM