Unicode Finder

"呓" U+5453(CJK UNIFIED IDEOGRAPH-5453)

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

Programming

C
\u5453
JavaScript
\u5453
Java
\u5453
Json
\u5453
Python
\u5453
Perl
\x{5453}
PHP
\x{5453}
Ruby
\u{5453}
Rust
\u{5453}
Go
\u5453

Web

CSS
\005453
HtmlDecimal
呓
HtmlHexadecimal
呓
Url
%E5%91%93

Code

MD5
5770182458a0e70523d5f24fd35a5de5
Sha1
045e048a747b03ac6ff6cf18b0712aff4e3e9e05
Base64
5ZGT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5453';
console.log(char);  // Output: 呓

Java:

char c = '\u5453';
System.out.println(c);  // Output: 呓

JSON:

{"text": "\u5453"}  // Value: 呓

Python:

char = '\u5453'
print(char)  # Output: 呓

Perl:

my $char = "\x{5453}";
print $char;  # Output: 呓

PHP:

$char = "\x{5453}";
echo $char;  // Output: 呓

Ruby:

char = "\u{5453}"
puts char  # Output: 呓

Rust:

let c = '\u{5453}';
println!("{}", c);  // Output: 呓

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005453";  /* Display: 呓 */
}

HTML Decimal:

<p>HTML decimal: &#21587;</p>  <!-- Display: 呓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5453;</p>  <!-- Display: 呓 -->

URL Encoding:

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

Encodings

MD5:

5770182458a0e70523d5f24fd35a5de5

SHA1:

045e048a747b03ac6ff6cf18b0712aff4e3e9e05

Base64:

5ZGT