Unicode Finder

"啭" U+556D(CJK UNIFIED IDEOGRAPH-556D)

U+556D
Nome do Bloco
CJK Unified Ideographs
Nome
CJK UNIFIED IDEOGRAPH-556D

Programming

C
\u556D
JavaScript
\u556D
Java
\u556D
Json
\u556D
Python
\u556D
Perl
\x{556D}
PHP
\x{556D}
Ruby
\u{556D}
Rust
\u{556D}
Go
\u556D

Web

CSS
\00556D
HtmlDecimal
啭
HtmlHexadecimal
啭
Url
%E5%95%AD

Code

MD5
4c5e6e1244e85e7e1fd4304e974532fa
Sha1
ce6dee09254c998b903433981cb2459c57501ac2
Base64
5ZWt

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u556D';
console.log(char);  // Output: 啭

Java:

char c = '\u556D';
System.out.println(c);  // Output: 啭

JSON:

{"text": "\u556D"}  // Value: 啭

Python:

char = '\u556D'
print(char)  # Output: 啭

Perl:

my $char = "\x{556D}";
print $char;  # Output: 啭

PHP:

$char = "\x{556D}";
echo $char;  // Output: 啭

Ruby:

char = "\u{556D}"
puts char  # Output: 啭

Rust:

let c = '\u{556D}';
println!("{}", c);  // Output: 啭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00556D";  /* Display: 啭 */
}

HTML Decimal:

<p>HTML decimal: &#21869;</p>  <!-- Display: 啭 -->

HTML Hexadecimal:

<p>HTML hex: &#x556D;</p>  <!-- Display: 啭 -->

URL Encoding:

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

Encodings

MD5:

4c5e6e1244e85e7e1fd4304e974532fa

SHA1:

ce6dee09254c998b903433981cb2459c57501ac2

Base64:

5ZWt