Unicode Finder

"啱" U+5571(CJK UNIFIED IDEOGRAPH-5571)

U+5571
Nom du Bloc
CJK Unified Ideographs
Nom
CJK UNIFIED IDEOGRAPH-5571

Programming

C
\u5571
JavaScript
\u5571
Java
\u5571
Json
\u5571
Python
\u5571
Perl
\x{5571}
PHP
\x{5571}
Ruby
\u{5571}
Rust
\u{5571}
Go
\u5571

Web

CSS
\005571
HtmlDecimal
啱
HtmlHexadecimal
啱
Url
%E5%95%B1

Code

MD5
01d51c4817908bcc112b4428c05a6ad9
Sha1
173ac322f52e72d9542ae2303c217e541b4df49e
Base64
5ZWx

Exemples d'Utilisation

Programming Languages

C:

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

JavaScript:

const char = '\u5571';
console.log(char);  // Output: 啱

Java:

char c = '\u5571';
System.out.println(c);  // Output: 啱

JSON:

{"text": "\u5571"}  // Value: 啱

Python:

char = '\u5571'
print(char)  # Output: 啱

Perl:

my $char = "\x{5571}";
print $char;  # Output: 啱

PHP:

$char = "\x{5571}";
echo $char;  // Output: 啱

Ruby:

char = "\u{5571}"
puts char  # Output: 啱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005571";  /* Display: 啱 */
}

HTML Decimal:

<p>HTML decimal: &#21873;</p>  <!-- Display: 啱 -->

HTML Hexadecimal:

<p>HTML hex: &#x5571;</p>  <!-- Display: 啱 -->

URL Encoding:

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

Encodings

MD5:

01d51c4817908bcc112b4428c05a6ad9

SHA1:

173ac322f52e72d9542ae2303c217e541b4df49e

Base64:

5ZWx