Unicode Finder

"偙" U+5059(CJK UNIFIED IDEOGRAPH-5059)

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

Programming

C
\u5059
JavaScript
\u5059
Java
\u5059
Json
\u5059
Python
\u5059
Perl
\x{5059}
PHP
\x{5059}
Ruby
\u{5059}
Rust
\u{5059}
Go
\u5059

Web

CSS
\005059
HtmlDecimal
偙
HtmlHexadecimal
偙
Url
%E5%81%99

Code

MD5
b7ddc4e6684e565a38c7dad267c98321
Sha1
9ff6985e104d62dbf4cdf30db1805185e3f63835
Base64
5YGZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5059';
console.log(char);  // Output: 偙

Java:

char c = '\u5059';
System.out.println(c);  // Output: 偙

JSON:

{"text": "\u5059"}  // Value: 偙

Python:

char = '\u5059'
print(char)  # Output: 偙

Perl:

my $char = "\x{5059}";
print $char;  # Output: 偙

PHP:

$char = "\x{5059}";
echo $char;  // Output: 偙

Ruby:

char = "\u{5059}"
puts char  # Output: 偙

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005059";  /* Display: 偙 */
}

HTML Decimal:

<p>HTML decimal: &#20569;</p>  <!-- Display: 偙 -->

HTML Hexadecimal:

<p>HTML hex: &#x5059;</p>  <!-- Display: 偙 -->

URL Encoding:

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

Encodings

MD5:

b7ddc4e6684e565a38c7dad267c98321

SHA1:

9ff6985e104d62dbf4cdf30db1805185e3f63835

Base64:

5YGZ