Unicode Finder

"偆" U+5046(CJK UNIFIED IDEOGRAPH-5046)

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

Programming

C
\u5046
JavaScript
\u5046
Java
\u5046
Json
\u5046
Python
\u5046
Perl
\x{5046}
PHP
\x{5046}
Ruby
\u{5046}
Rust
\u{5046}
Go
\u5046

Web

CSS
\005046
HtmlDecimal
偆
HtmlHexadecimal
偆
Url
%E5%81%86

Code

MD5
d29f1eb2f605e8c14c225bd26d26567a
Sha1
890943e3c4bdd649ffdd41e745b4fe1cae9771eb
Base64
5YGG

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5046';
console.log(char);  // Output: 偆

Java:

char c = '\u5046';
System.out.println(c);  // Output: 偆

JSON:

{"text": "\u5046"}  // Value: 偆

Python:

char = '\u5046'
print(char)  # Output: 偆

Perl:

my $char = "\x{5046}";
print $char;  # Output: 偆

PHP:

$char = "\x{5046}";
echo $char;  // Output: 偆

Ruby:

char = "\u{5046}"
puts char  # Output: 偆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005046";  /* Display: 偆 */
}

HTML Decimal:

<p>HTML decimal: &#20550;</p>  <!-- Display: 偆 -->

HTML Hexadecimal:

<p>HTML hex: &#x5046;</p>  <!-- Display: 偆 -->

URL Encoding:

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

Encodings

MD5:

d29f1eb2f605e8c14c225bd26d26567a

SHA1:

890943e3c4bdd649ffdd41e745b4fe1cae9771eb

Base64:

5YGG