Unicode Finder

"喇" U+5587(CJK UNIFIED IDEOGRAPH-5587)

U+5587
Название Блока
CJK Unified Ideographs
Название
CJK UNIFIED IDEOGRAPH-5587

Programming

C
\u5587
JavaScript
\u5587
Java
\u5587
Json
\u5587
Python
\u5587
Perl
\x{5587}
PHP
\x{5587}
Ruby
\u{5587}
Rust
\u{5587}
Go
\u5587

Web

CSS
\005587
HtmlDecimal
喇
HtmlHexadecimal
喇
Url
%E5%96%87

Code

MD5
509e482bb4127f31d8286d9a87aa1581
Sha1
b8aad89d022d073eb48cdb13aa036b5f80e80514
Base64
5ZaH

Примеры Использования

Programming Languages

C:

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

JavaScript:

const char = '\u5587';
console.log(char);  // Output: 喇

Java:

char c = '\u5587';
System.out.println(c);  // Output: 喇

JSON:

{"text": "\u5587"}  // Value: 喇

Python:

char = '\u5587'
print(char)  # Output: 喇

Perl:

my $char = "\x{5587}";
print $char;  # Output: 喇

PHP:

$char = "\x{5587}";
echo $char;  // Output: 喇

Ruby:

char = "\u{5587}"
puts char  # Output: 喇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005587";  /* Display: 喇 */
}

HTML Decimal:

<p>HTML decimal: &#21895;</p>  <!-- Display: 喇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5587;</p>  <!-- Display: 喇 -->

URL Encoding:

// 喇 URL encoding
https://unicodefinder.com/search.php?query=%E5%96%87

Encodings

MD5:

509e482bb4127f31d8286d9a87aa1581

SHA1:

b8aad89d022d073eb48cdb13aa036b5f80e80514

Base64:

5ZaH