Unicode Finder

"夑" U+5911(CJK UNIFIED IDEOGRAPH-5911)

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

Programming

C
\u5911
JavaScript
\u5911
Java
\u5911
Json
\u5911
Python
\u5911
Perl
\x{5911}
PHP
\x{5911}
Ruby
\u{5911}
Rust
\u{5911}
Go
\u5911

Web

CSS
\005911
HtmlDecimal
夑
HtmlHexadecimal
夑
Url
%E5%A4%91

Code

MD5
2ab280df2c316efd6db8c38061e2ef9c
Sha1
2896deda5de94b722e83c2b5fde2fdcd54ed3042
Base64
5aSR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5911';
console.log(char);  // Output: 夑

Java:

char c = '\u5911';
System.out.println(c);  // Output: 夑

JSON:

{"text": "\u5911"}  // Value: 夑

Python:

char = '\u5911'
print(char)  # Output: 夑

Perl:

my $char = "\x{5911}";
print $char;  # Output: 夑

PHP:

$char = "\x{5911}";
echo $char;  // Output: 夑

Ruby:

char = "\u{5911}"
puts char  # Output: 夑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005911";  /* Display: 夑 */
}

HTML Decimal:

<p>HTML decimal: &#22801;</p>  <!-- Display: 夑 -->

HTML Hexadecimal:

<p>HTML hex: &#x5911;</p>  <!-- Display: 夑 -->

URL Encoding:

// 夑 URL encoding
https://unicodefinder.com/search.php?query=%E5%A4%91

Encodings

MD5:

2ab280df2c316efd6db8c38061e2ef9c

SHA1:

2896deda5de94b722e83c2b5fde2fdcd54ed3042

Base64:

5aSR