Unicode Finder

"吗" U+5417(CJK UNIFIED IDEOGRAPH-5417)

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

Programming

C
\u5417
JavaScript
\u5417
Java
\u5417
Json
\u5417
Python
\u5417
Perl
\x{5417}
PHP
\x{5417}
Ruby
\u{5417}
Rust
\u{5417}
Go
\u5417

Web

CSS
\005417
HtmlDecimal
吗
HtmlHexadecimal
吗
Url
%E5%90%97

Code

MD5
2988084a7495b1a692c585b567f19f63
Sha1
8c49e4b3edb7f0239ec632f9766042bb19569fd1
Base64
5ZCX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5417';
console.log(char);  // Output: 吗

Java:

char c = '\u5417';
System.out.println(c);  // Output: 吗

JSON:

{"text": "\u5417"}  // Value: 吗

Python:

char = '\u5417'
print(char)  # Output: 吗

Perl:

my $char = "\x{5417}";
print $char;  # Output: 吗

PHP:

$char = "\x{5417}";
echo $char;  // Output: 吗

Ruby:

char = "\u{5417}"
puts char  # Output: 吗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005417";  /* Display: 吗 */
}

HTML Decimal:

<p>HTML decimal: &#21527;</p>  <!-- Display: 吗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5417;</p>  <!-- Display: 吗 -->

URL Encoding:

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

Encodings

MD5:

2988084a7495b1a692c585b567f19f63

SHA1:

8c49e4b3edb7f0239ec632f9766042bb19569fd1

Base64:

5ZCX