Unicode Finder

"哜" U+54DC(CJK UNIFIED IDEOGRAPH-54DC)

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

Programming

C
\u54DC
JavaScript
\u54DC
Java
\u54DC
Json
\u54DC
Python
\u54DC
Perl
\x{54DC}
PHP
\x{54DC}
Ruby
\u{54DC}
Rust
\u{54DC}
Go
\u54DC

Web

CSS
\0054DC
HtmlDecimal
哜
HtmlHexadecimal
哜
Url
%E5%93%9C

Code

MD5
5ede1fd5122fcd045df56c03d3cc0f34
Sha1
70f7b72a6102d9b9c5ca9573ef852c0033941d5a
Base64
5ZOc

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u54DC';
console.log(char);  // Output: 哜

Java:

char c = '\u54DC';
System.out.println(c);  // Output: 哜

JSON:

{"text": "\u54DC"}  // Value: 哜

Python:

char = '\u54DC'
print(char)  # Output: 哜

Perl:

my $char = "\x{54DC}";
print $char;  # Output: 哜

PHP:

$char = "\x{54DC}";
echo $char;  // Output: 哜

Ruby:

char = "\u{54DC}"
puts char  # Output: 哜

Rust:

let c = '\u{54DC}';
println!("{}", c);  // Output: 哜

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0054DC";  /* Display: 哜 */
}

HTML Decimal:

<p>HTML decimal: &#21724;</p>  <!-- Display: 哜 -->

HTML Hexadecimal:

<p>HTML hex: &#x54DC;</p>  <!-- Display: 哜 -->

URL Encoding:

// 哜 URL encoding
https://unicodefinder.com/search.php?query=%E5%93%9C

Encodings

MD5:

5ede1fd5122fcd045df56c03d3cc0f34

SHA1:

70f7b72a6102d9b9c5ca9573ef852c0033941d5a

Base64:

5ZOc