Unicode Finder

"哰" U+54F0(CJK UNIFIED IDEOGRAPH-54F0)

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

Programming

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

Web

CSS
\0054F0
HtmlDecimal
哰
HtmlHexadecimal
哰
Url
%E5%93%B0

Code

MD5
82964a308eb96d885ac7a6e23084a791
Sha1
e81a543fa21c3adc2d4e7d5936b8f8e952e6ec9d
Base64
5ZOw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u54F0';
console.log(char);  // Output: 哰

Java:

char c = '\u54F0';
System.out.println(c);  // Output: 哰

JSON:

{"text": "\u54F0"}  // Value: 哰

Python:

char = '\u54F0'
print(char)  # Output: 哰

Perl:

my $char = "\x{54F0}";
print $char;  # Output: 哰

PHP:

$char = "\x{54F0}";
echo $char;  // Output: 哰

Ruby:

char = "\u{54F0}"
puts char  # Output: 哰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21744;</p>  <!-- Display: 哰 -->

HTML Hexadecimal:

<p>HTML hex: &#x54F0;</p>  <!-- Display: 哰 -->

URL Encoding:

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

Encodings

MD5:

82964a308eb96d885ac7a6e23084a791

SHA1:

e81a543fa21c3adc2d4e7d5936b8f8e952e6ec9d

Base64:

5ZOw