Unicode Finder

"哈" U+54C8(CJK UNIFIED IDEOGRAPH-54C8)

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

Programming

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

Web

CSS
\0054C8
HtmlDecimal
哈
HtmlHexadecimal
哈
Url
%E5%93%88

Code

MD5
96957453484b14e9b7dc8321afd2e083
Sha1
3d4edff079892f4b0987588a7e430574ddc0a4a0
Base64
5ZOI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u54C8';
console.log(char);  // Output: 哈

Java:

char c = '\u54C8';
System.out.println(c);  // Output: 哈

JSON:

{"text": "\u54C8"}  // Value: 哈

Python:

char = '\u54C8'
print(char)  # Output: 哈

Perl:

my $char = "\x{54C8}";
print $char;  # Output: 哈

PHP:

$char = "\x{54C8}";
echo $char;  // Output: 哈

Ruby:

char = "\u{54C8}"
puts char  # Output: 哈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21704;</p>  <!-- Display: 哈 -->

HTML Hexadecimal:

<p>HTML hex: &#x54C8;</p>  <!-- Display: 哈 -->

URL Encoding:

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

Encodings

MD5:

96957453484b14e9b7dc8321afd2e083

SHA1:

3d4edff079892f4b0987588a7e430574ddc0a4a0

Base64:

5ZOI