Unicode Finder

"偗" U+5057(CJK UNIFIED IDEOGRAPH-5057)

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

Programming

C
\u5057
JavaScript
\u5057
Java
\u5057
Json
\u5057
Python
\u5057
Perl
\x{5057}
PHP
\x{5057}
Ruby
\u{5057}
Rust
\u{5057}
Go
\u5057

Web

CSS
\005057
HtmlDecimal
偗
HtmlHexadecimal
偗
Url
%E5%81%97

Code

MD5
dcbc17a4b7cf55cbcb9f09486037fe35
Sha1
43fa6b2430c05c0632d9aac92d5d8ef4e86da68b
Base64
5YGX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5057';
console.log(char);  // Output: 偗

Java:

char c = '\u5057';
System.out.println(c);  // Output: 偗

JSON:

{"text": "\u5057"}  // Value: 偗

Python:

char = '\u5057'
print(char)  # Output: 偗

Perl:

my $char = "\x{5057}";
print $char;  # Output: 偗

PHP:

$char = "\x{5057}";
echo $char;  // Output: 偗

Ruby:

char = "\u{5057}"
puts char  # Output: 偗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005057";  /* Display: 偗 */
}

HTML Decimal:

<p>HTML decimal: &#20567;</p>  <!-- Display: 偗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5057;</p>  <!-- Display: 偗 -->

URL Encoding:

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

Encodings

MD5:

dcbc17a4b7cf55cbcb9f09486037fe35

SHA1:

43fa6b2430c05c0632d9aac92d5d8ef4e86da68b

Base64:

5YGX