Unicode Finder

"假" U+5047(CJK UNIFIED IDEOGRAPH-5047)

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

Programming

C
\u5047
JavaScript
\u5047
Java
\u5047
Json
\u5047
Python
\u5047
Perl
\x{5047}
PHP
\x{5047}
Ruby
\u{5047}
Rust
\u{5047}
Go
\u5047

Web

CSS
\005047
HtmlDecimal
假
HtmlHexadecimal
假
Url
%E5%81%87

Code

MD5
21b8ad624733166e29149399e35df3bc
Sha1
3eab973eae4ce9a226bfe3a343a6f99c6ab26efe
Base64
5YGH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5047';
console.log(char);  // Output: 假

Java:

char c = '\u5047';
System.out.println(c);  // Output: 假

JSON:

{"text": "\u5047"}  // Value: 假

Python:

char = '\u5047'
print(char)  # Output: 假

Perl:

my $char = "\x{5047}";
print $char;  # Output: 假

PHP:

$char = "\x{5047}";
echo $char;  // Output: 假

Ruby:

char = "\u{5047}"
puts char  # Output: 假

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005047";  /* Display: 假 */
}

HTML Decimal:

<p>HTML decimal: &#20551;</p>  <!-- Display: 假 -->

HTML Hexadecimal:

<p>HTML hex: &#x5047;</p>  <!-- Display: 假 -->

URL Encoding:

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

Encodings

MD5:

21b8ad624733166e29149399e35df3bc

SHA1:

3eab973eae4ce9a226bfe3a343a6f99c6ab26efe

Base64:

5YGH