Unicode Finder

"啠" U+5560(CJK UNIFIED IDEOGRAPH-5560)

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

Programming

C
\u5560
JavaScript
\u5560
Java
\u5560
Json
\u5560
Python
\u5560
Perl
\x{5560}
PHP
\x{5560}
Ruby
\u{5560}
Rust
\u{5560}
Go
\u5560

Web

CSS
\005560
HtmlDecimal
啠
HtmlHexadecimal
啠
Url
%E5%95%A0

Code

MD5
4a2f9b61561e66879681d1897bd02e8c
Sha1
24ef6c46580f5a11583a5a80739c801881d7fa8d
Base64
5ZWg

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u5560';
console.log(char);  // Output: 啠

Java:

char c = '\u5560';
System.out.println(c);  // Output: 啠

JSON:

{"text": "\u5560"}  // Value: 啠

Python:

char = '\u5560'
print(char)  # Output: 啠

Perl:

my $char = "\x{5560}";
print $char;  # Output: 啠

PHP:

$char = "\x{5560}";
echo $char;  // Output: 啠

Ruby:

char = "\u{5560}"
puts char  # Output: 啠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005560";  /* Display: 啠 */
}

HTML Decimal:

<p>HTML decimal: &#21856;</p>  <!-- Display: 啠 -->

HTML Hexadecimal:

<p>HTML hex: &#x5560;</p>  <!-- Display: 啠 -->

URL Encoding:

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

Encodings

MD5:

4a2f9b61561e66879681d1897bd02e8c

SHA1:

24ef6c46580f5a11583a5a80739c801881d7fa8d

Base64:

5ZWg