Unicode Finder

"哄" U+54C4(CJK UNIFIED IDEOGRAPH-54C4)

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

Programming

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

Web

CSS
\0054C4
HtmlDecimal
哄
HtmlHexadecimal
哄
Url
%E5%93%84

Code

MD5
0935f9cf1403229045db3275727a16e3
Sha1
cb05c982140b42d0d8be52e36fcdd7be848a6a6e
Base64
5ZOE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u54C4';
console.log(char);  // Output: 哄

Java:

char c = '\u54C4';
System.out.println(c);  // Output: 哄

JSON:

{"text": "\u54C4"}  // Value: 哄

Python:

char = '\u54C4'
print(char)  # Output: 哄

Perl:

my $char = "\x{54C4}";
print $char;  # Output: 哄

PHP:

$char = "\x{54C4}";
echo $char;  // Output: 哄

Ruby:

char = "\u{54C4}"
puts char  # Output: 哄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21700;</p>  <!-- Display: 哄 -->

HTML Hexadecimal:

<p>HTML hex: &#x54C4;</p>  <!-- Display: 哄 -->

URL Encoding:

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

Encodings

MD5:

0935f9cf1403229045db3275727a16e3

SHA1:

cb05c982140b42d0d8be52e36fcdd7be848a6a6e

Base64:

5ZOE