Unicode Finder

"哉" U+54C9(CJK UNIFIED IDEOGRAPH-54C9)

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

Programming

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

Web

CSS
\0054C9
HtmlDecimal
哉
HtmlHexadecimal
哉
Url
%E5%93%89

Code

MD5
8cbebaa8366db892d80f503d89e92704
Sha1
a9174a11a2935f6ecd8152a6c4e72b644e60f4d9
Base64
5ZOJ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u54C9';
console.log(char);  // Output: 哉

Java:

char c = '\u54C9';
System.out.println(c);  // Output: 哉

JSON:

{"text": "\u54C9"}  // Value: 哉

Python:

char = '\u54C9'
print(char)  # Output: 哉

Perl:

my $char = "\x{54C9}";
print $char;  # Output: 哉

PHP:

$char = "\x{54C9}";
echo $char;  // Output: 哉

Ruby:

char = "\u{54C9}"
puts char  # Output: 哉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21705;</p>  <!-- Display: 哉 -->

HTML Hexadecimal:

<p>HTML hex: &#x54C9;</p>  <!-- Display: 哉 -->

URL Encoding:

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

Encodings

MD5:

8cbebaa8366db892d80f503d89e92704

SHA1:

a9174a11a2935f6ecd8152a6c4e72b644e60f4d9

Base64:

5ZOJ