Unicode Finder

"啫" U+556B(CJK UNIFIED IDEOGRAPH-556B)

U+556B
Nom du Bloc
CJK Unified Ideographs
Nom
CJK UNIFIED IDEOGRAPH-556B

Programming

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

Web

CSS
\00556B
HtmlDecimal
啫
HtmlHexadecimal
啫
Url
%E5%95%AB

Code

MD5
2a4cb7b4e18689a7157859db96ecdee7
Sha1
d78fc613f55060ade2ad615e0197bbafa1f92c74
Base64
5ZWr

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u556B';
console.log(char);  // Output: 啫

Java:

char c = '\u556B';
System.out.println(c);  // Output: 啫

JSON:

{"text": "\u556B"}  // Value: 啫

Python:

char = '\u556B'
print(char)  # Output: 啫

Perl:

my $char = "\x{556B}";
print $char;  # Output: 啫

PHP:

$char = "\x{556B}";
echo $char;  // Output: 啫

Ruby:

char = "\u{556B}"
puts char  # Output: 啫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21867;</p>  <!-- Display: 啫 -->

HTML Hexadecimal:

<p>HTML hex: &#x556B;</p>  <!-- Display: 啫 -->

URL Encoding:

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

Encodings

MD5:

2a4cb7b4e18689a7157859db96ecdee7

SHA1:

d78fc613f55060ade2ad615e0197bbafa1f92c74

Base64:

5ZWr