Unicode Finder

"嘋" U+560B(CJK UNIFIED IDEOGRAPH-560B)

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

Programming

C
\u560B
JavaScript
\u560B
Java
\u560B
Json
\u560B
Python
\u560B
Perl
\x{560B}
PHP
\x{560B}
Ruby
\u{560B}
Rust
\u{560B}
Go
\u560B

Web

CSS
\00560B
HtmlDecimal
嘋
HtmlHexadecimal
嘋
Url
%E5%98%8B

Code

MD5
a73adf3ff9e28bd110d4f06278e79a1d
Sha1
22fe4872b62f37c9f2779c1dd46b0b06ccdf1778
Base64
5ZiL

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u560B';
console.log(char);  // Output: 嘋

Java:

char c = '\u560B';
System.out.println(c);  // Output: 嘋

JSON:

{"text": "\u560B"}  // Value: 嘋

Python:

char = '\u560B'
print(char)  # Output: 嘋

Perl:

my $char = "\x{560B}";
print $char;  # Output: 嘋

PHP:

$char = "\x{560B}";
echo $char;  // Output: 嘋

Ruby:

char = "\u{560B}"
puts char  # Output: 嘋

Rust:

let c = '\u{560B}';
println!("{}", c);  // Output: 嘋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00560B";  /* Display: 嘋 */
}

HTML Decimal:

<p>HTML decimal: &#22027;</p>  <!-- Display: 嘋 -->

HTML Hexadecimal:

<p>HTML hex: &#x560B;</p>  <!-- Display: 嘋 -->

URL Encoding:

// 嘋 URL encoding
https://unicodefinder.com/search.php?query=%E5%98%8B

Encodings

MD5:

a73adf3ff9e28bd110d4f06278e79a1d

SHA1:

22fe4872b62f37c9f2779c1dd46b0b06ccdf1778

Base64:

5ZiL