Unicode Finder

"偠" U+5060(CJK UNIFIED IDEOGRAPH-5060)

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

Programming

C
\u5060
JavaScript
\u5060
Java
\u5060
Json
\u5060
Python
\u5060
Perl
\x{5060}
PHP
\x{5060}
Ruby
\u{5060}
Rust
\u{5060}
Go
\u5060

Web

CSS
\005060
HtmlDecimal
偠
HtmlHexadecimal
偠
Url
%E5%81%A0

Code

MD5
62d053d847ac40d8ac33c4bb94c50b35
Sha1
c25f6e32b3d8aeea2931e91da3c8426a68d13fa8
Base64
5YGg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5060';
console.log(char);  // Output: 偠

Java:

char c = '\u5060';
System.out.println(c);  // Output: 偠

JSON:

{"text": "\u5060"}  // Value: 偠

Python:

char = '\u5060'
print(char)  # Output: 偠

Perl:

my $char = "\x{5060}";
print $char;  # Output: 偠

PHP:

$char = "\x{5060}";
echo $char;  // Output: 偠

Ruby:

char = "\u{5060}"
puts char  # Output: 偠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005060";  /* Display: 偠 */
}

HTML Decimal:

<p>HTML decimal: &#20576;</p>  <!-- Display: 偠 -->

HTML Hexadecimal:

<p>HTML hex: &#x5060;</p>  <!-- Display: 偠 -->

URL Encoding:

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

Encodings

MD5:

62d053d847ac40d8ac33c4bb94c50b35

SHA1:

c25f6e32b3d8aeea2931e91da3c8426a68d13fa8

Base64:

5YGg