Unicode Finder

"听" U+542C(CJK UNIFIED IDEOGRAPH-542C)

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

Programming

C
\u542C
JavaScript
\u542C
Java
\u542C
Json
\u542C
Python
\u542C
Perl
\x{542C}
PHP
\x{542C}
Ruby
\u{542C}
Rust
\u{542C}
Go
\u542C

Web

CSS
\00542C
HtmlDecimal
听
HtmlHexadecimal
听
Url
%E5%90%AC

Code

MD5
8cbe1c93ad66a95e65967982465b3064
Sha1
1e358ba2b73b57fe8706f46269bd33872e3fb096
Base64
5ZCs

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u542C';
console.log(char);  // Output: 听

Java:

char c = '\u542C';
System.out.println(c);  // Output: 听

JSON:

{"text": "\u542C"}  // Value: 听

Python:

char = '\u542C'
print(char)  # Output: 听

Perl:

my $char = "\x{542C}";
print $char;  # Output: 听

PHP:

$char = "\x{542C}";
echo $char;  // Output: 听

Ruby:

char = "\u{542C}"
puts char  # Output: 听

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21548;</p>  <!-- Display: 听 -->

HTML Hexadecimal:

<p>HTML hex: &#x542C;</p>  <!-- Display: 听 -->

URL Encoding:

// 听 URL encoding
https://unicodefinder.com/search.php?query=%E5%90%AC

Encodings

MD5:

8cbe1c93ad66a95e65967982465b3064

SHA1:

1e358ba2b73b57fe8706f46269bd33872e3fb096

Base64:

5ZCs