Unicode Finder

"偂" U+5042(CJK UNIFIED IDEOGRAPH-5042)

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

Programming

C
\u5042
JavaScript
\u5042
Java
\u5042
Json
\u5042
Python
\u5042
Perl
\x{5042}
PHP
\x{5042}
Ruby
\u{5042}
Rust
\u{5042}
Go
\u5042

Web

CSS
\005042
HtmlDecimal
偂
HtmlHexadecimal
偂
Url
%E5%81%82

Code

MD5
7d2962d12e1343026040c5aa75694167
Sha1
3b415b0c3453c6d90eaf6ff67cbf91ee240175d6
Base64
5YGC

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5042';
console.log(char);  // Output: 偂

Java:

char c = '\u5042';
System.out.println(c);  // Output: 偂

JSON:

{"text": "\u5042"}  // Value: 偂

Python:

char = '\u5042'
print(char)  # Output: 偂

Perl:

my $char = "\x{5042}";
print $char;  # Output: 偂

PHP:

$char = "\x{5042}";
echo $char;  // Output: 偂

Ruby:

char = "\u{5042}"
puts char  # Output: 偂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005042";  /* Display: 偂 */
}

HTML Decimal:

<p>HTML decimal: &#20546;</p>  <!-- Display: 偂 -->

HTML Hexadecimal:

<p>HTML hex: &#x5042;</p>  <!-- Display: 偂 -->

URL Encoding:

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

Encodings

MD5:

7d2962d12e1343026040c5aa75694167

SHA1:

3b415b0c3453c6d90eaf6ff67cbf91ee240175d6

Base64:

5YGC