Unicode Finder

"啕" U+5555(CJK UNIFIED IDEOGRAPH-5555)

U+5555
Nombre del Bloque
CJK Unified Ideographs
Nombre
CJK UNIFIED IDEOGRAPH-5555

Programming

C
\u5555
JavaScript
\u5555
Java
\u5555
Json
\u5555
Python
\u5555
Perl
\x{5555}
PHP
\x{5555}
Ruby
\u{5555}
Rust
\u{5555}
Go
\u5555

Web

CSS
\005555
HtmlDecimal
啕
HtmlHexadecimal
啕
Url
%E5%95%95

Code

MD5
cd2821e0dfb21204296229d06444a964
Sha1
bfe0e80032d5218d246192a2165ceeb279129ef0
Base64
5ZWV

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u5555';
console.log(char);  // Output: 啕

Java:

char c = '\u5555';
System.out.println(c);  // Output: 啕

JSON:

{"text": "\u5555"}  // Value: 啕

Python:

char = '\u5555'
print(char)  # Output: 啕

Perl:

my $char = "\x{5555}";
print $char;  # Output: 啕

PHP:

$char = "\x{5555}";
echo $char;  // Output: 啕

Ruby:

char = "\u{5555}"
puts char  # Output: 啕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005555";  /* Display: 啕 */
}

HTML Decimal:

<p>HTML decimal: &#21845;</p>  <!-- Display: 啕 -->

HTML Hexadecimal:

<p>HTML hex: &#x5555;</p>  <!-- Display: 啕 -->

URL Encoding:

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

Encodings

MD5:

cd2821e0dfb21204296229d06444a964

SHA1:

bfe0e80032d5218d246192a2165ceeb279129ef0

Base64:

5ZWV