Unicode Finder

"喑" U+5591(CJK UNIFIED IDEOGRAPH-5591)

U+5591
Nome del Blocco
CJK Unified Ideographs
Nome
CJK UNIFIED IDEOGRAPH-5591

Programming

C
\u5591
JavaScript
\u5591
Java
\u5591
Json
\u5591
Python
\u5591
Perl
\x{5591}
PHP
\x{5591}
Ruby
\u{5591}
Rust
\u{5591}
Go
\u5591

Web

CSS
\005591
HtmlDecimal
喑
HtmlHexadecimal
喑
Url
%E5%96%91

Code

MD5
81c47711cbea442261cf7f299d0bad3c
Sha1
5382c218869f34da26c1220d963d270c3a14effd
Base64
5ZaR

Esempi di Utilizzo

Programming Languages

C:

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

JavaScript:

const char = '\u5591';
console.log(char);  // Output: 喑

Java:

char c = '\u5591';
System.out.println(c);  // Output: 喑

JSON:

{"text": "\u5591"}  // Value: 喑

Python:

char = '\u5591'
print(char)  # Output: 喑

Perl:

my $char = "\x{5591}";
print $char;  # Output: 喑

PHP:

$char = "\x{5591}";
echo $char;  // Output: 喑

Ruby:

char = "\u{5591}"
puts char  # Output: 喑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005591";  /* Display: 喑 */
}

HTML Decimal:

<p>HTML decimal: &#21905;</p>  <!-- Display: 喑 -->

HTML Hexadecimal:

<p>HTML hex: &#x5591;</p>  <!-- Display: 喑 -->

URL Encoding:

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

Encodings

MD5:

81c47711cbea442261cf7f299d0bad3c

SHA1:

5382c218869f34da26c1220d963d270c3a14effd

Base64:

5ZaR