Unicode Finder

"哎" U+54CE(CJK UNIFIED IDEOGRAPH-54CE)

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

Programming

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

Web

CSS
\0054CE
HtmlDecimal
哎
HtmlHexadecimal
哎
Url
%E5%93%8E

Code

MD5
14212ff0161c24a5c1a6908d2042ee00
Sha1
3ddf489e9be3f15782cba12e65255e658ea9dd20
Base64
5ZOO

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u54CE';
console.log(char);  // Output: 哎

Java:

char c = '\u54CE';
System.out.println(c);  // Output: 哎

JSON:

{"text": "\u54CE"}  // Value: 哎

Python:

char = '\u54CE'
print(char)  # Output: 哎

Perl:

my $char = "\x{54CE}";
print $char;  # Output: 哎

PHP:

$char = "\x{54CE}";
echo $char;  // Output: 哎

Ruby:

char = "\u{54CE}"
puts char  # Output: 哎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21710;</p>  <!-- Display: 哎 -->

HTML Hexadecimal:

<p>HTML hex: &#x54CE;</p>  <!-- Display: 哎 -->

URL Encoding:

// 哎 URL encoding
https://unicodefinder.com/search.php?query=%E5%93%8E

Encodings

MD5:

14212ff0161c24a5c1a6908d2042ee00

SHA1:

3ddf489e9be3f15782cba12e65255e658ea9dd20

Base64:

5ZOO