Unicode Finder

"哅" U+54C5(CJK UNIFIED IDEOGRAPH-54C5)

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

Programming

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

Web

CSS
\0054C5
HtmlDecimal
哅
HtmlHexadecimal
哅
Url
%E5%93%85

Code

MD5
f5f01d1ec507d15e38c45aa0de40b32e
Sha1
82fe310241af5afdaba09b7d0dc00958bab83410
Base64
5ZOF

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u54C5';
console.log(char);  // Output: 哅

Java:

char c = '\u54C5';
System.out.println(c);  // Output: 哅

JSON:

{"text": "\u54C5"}  // Value: 哅

Python:

char = '\u54C5'
print(char)  # Output: 哅

Perl:

my $char = "\x{54C5}";
print $char;  # Output: 哅

PHP:

$char = "\x{54C5}";
echo $char;  // Output: 哅

Ruby:

char = "\u{54C5}"
puts char  # Output: 哅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21701;</p>  <!-- Display: 哅 -->

HTML Hexadecimal:

<p>HTML hex: &#x54C5;</p>  <!-- Display: 哅 -->

URL Encoding:

// 哅 URL encoding
https://unicodefinder.com/search.php?query=%E5%93%85

Encodings

MD5:

f5f01d1ec507d15e38c45aa0de40b32e

SHA1:

82fe310241af5afdaba09b7d0dc00958bab83410

Base64:

5ZOF