Unicode Finder

"和" U+548C(CJK UNIFIED IDEOGRAPH-548C)

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

Programming

C
\u548C
JavaScript
\u548C
Java
\u548C
Json
\u548C
Python
\u548C
Perl
\x{548C}
PHP
\x{548C}
Ruby
\u{548C}
Rust
\u{548C}
Go
\u548C

Web

CSS
\00548C
HtmlDecimal
和
HtmlHexadecimal
和
Url
%E5%92%8C

Code

MD5
ab20cc42f302ed3011ec4e3aa547933e
Sha1
9a3eb340971ffc2dd9cf4da3994078519f53a568
Base64
5ZKM

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u548C';
console.log(char);  // Output: 和

Java:

char c = '\u548C';
System.out.println(c);  // Output: 和

JSON:

{"text": "\u548C"}  // Value: 和

Python:

char = '\u548C'
print(char)  # Output: 和

Perl:

my $char = "\x{548C}";
print $char;  # Output: 和

PHP:

$char = "\x{548C}";
echo $char;  // Output: 和

Ruby:

char = "\u{548C}"
puts char  # Output: 和

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21644;</p>  <!-- Display: 和 -->

HTML Hexadecimal:

<p>HTML hex: &#x548C;</p>  <!-- Display: 和 -->

URL Encoding:

// 和 URL encoding
https://unicodefinder.com/search.php?query=%E5%92%8C

Encodings

MD5:

ab20cc42f302ed3011ec4e3aa547933e

SHA1:

9a3eb340971ffc2dd9cf4da3994078519f53a568

Base64:

5ZKM