Unicode Finder

"偓" U+5053(CJK UNIFIED IDEOGRAPH-5053)

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

Programming

C
\u5053
JavaScript
\u5053
Java
\u5053
Json
\u5053
Python
\u5053
Perl
\x{5053}
PHP
\x{5053}
Ruby
\u{5053}
Rust
\u{5053}
Go
\u5053

Web

CSS
\005053
HtmlDecimal
偓
HtmlHexadecimal
偓
Url
%E5%81%93

Code

MD5
97e0443ba0319b3fd76684d2f6c0d011
Sha1
2c888da6d23cf1d78ced1c8516372841e3e1e8d8
Base64
5YGT

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5053';
console.log(char);  // Output: 偓

Java:

char c = '\u5053';
System.out.println(c);  // Output: 偓

JSON:

{"text": "\u5053"}  // Value: 偓

Python:

char = '\u5053'
print(char)  # Output: 偓

Perl:

my $char = "\x{5053}";
print $char;  # Output: 偓

PHP:

$char = "\x{5053}";
echo $char;  // Output: 偓

Ruby:

char = "\u{5053}"
puts char  # Output: 偓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005053";  /* Display: 偓 */
}

HTML Decimal:

<p>HTML decimal: &#20563;</p>  <!-- Display: 偓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5053;</p>  <!-- Display: 偓 -->

URL Encoding:

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

Encodings

MD5:

97e0443ba0319b3fd76684d2f6c0d011

SHA1:

2c888da6d23cf1d78ced1c8516372841e3e1e8d8

Base64:

5YGT