Unicode Finder

"喃" U+5583(CJK UNIFIED IDEOGRAPH-5583)

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

Programming

C
\u5583
JavaScript
\u5583
Java
\u5583
Json
\u5583
Python
\u5583
Perl
\x{5583}
PHP
\x{5583}
Ruby
\u{5583}
Rust
\u{5583}
Go
\u5583

Web

CSS
\005583
HtmlDecimal
喃
HtmlHexadecimal
喃
Url
%E5%96%83

Code

MD5
abc18fc3c4b1dcba1461f6daacdf0d33
Sha1
00cdc95444157862657126aca83874daa3837b98
Base64
5ZaD

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

Programming Languages

C:

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

JavaScript:

const char = '\u5583';
console.log(char);  // Output: 喃

Java:

char c = '\u5583';
System.out.println(c);  // Output: 喃

JSON:

{"text": "\u5583"}  // Value: 喃

Python:

char = '\u5583'
print(char)  # Output: 喃

Perl:

my $char = "\x{5583}";
print $char;  # Output: 喃

PHP:

$char = "\x{5583}";
echo $char;  // Output: 喃

Ruby:

char = "\u{5583}"
puts char  # Output: 喃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005583";  /* Display: 喃 */
}

HTML Decimal:

<p>HTML decimal: &#21891;</p>  <!-- Display: 喃 -->

HTML Hexadecimal:

<p>HTML hex: &#x5583;</p>  <!-- Display: 喃 -->

URL Encoding:

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

Encodings

MD5:

abc18fc3c4b1dcba1461f6daacdf0d33

SHA1:

00cdc95444157862657126aca83874daa3837b98

Base64:

5ZaD