Unicode Finder

"啦" U+5566(CJK UNIFIED IDEOGRAPH-5566)

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

Programming

C
\u5566
JavaScript
\u5566
Java
\u5566
Json
\u5566
Python
\u5566
Perl
\x{5566}
PHP
\x{5566}
Ruby
\u{5566}
Rust
\u{5566}
Go
\u5566

Web

CSS
\005566
HtmlDecimal
啦
HtmlHexadecimal
啦
Url
%E5%95%A6

Code

MD5
19cfa68224c46933d3363f5662b87fa4
Sha1
0fe8758c66399df6586ce36a085f2e83b2f8970f
Base64
5ZWm

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5566';
console.log(char);  // Output: 啦

Java:

char c = '\u5566';
System.out.println(c);  // Output: 啦

JSON:

{"text": "\u5566"}  // Value: 啦

Python:

char = '\u5566'
print(char)  # Output: 啦

Perl:

my $char = "\x{5566}";
print $char;  # Output: 啦

PHP:

$char = "\x{5566}";
echo $char;  // Output: 啦

Ruby:

char = "\u{5566}"
puts char  # Output: 啦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005566";  /* Display: 啦 */
}

HTML Decimal:

<p>HTML decimal: &#21862;</p>  <!-- Display: 啦 -->

HTML Hexadecimal:

<p>HTML hex: &#x5566;</p>  <!-- Display: 啦 -->

URL Encoding:

// 啦 URL encoding
https://unicodefinder.com/search.php?query=%E5%95%A6

Encodings

MD5:

19cfa68224c46933d3363f5662b87fa4

SHA1:

0fe8758c66399df6586ce36a085f2e83b2f8970f

Base64:

5ZWm