Unicode Finder

"噠" U+5660(CJK UNIFIED IDEOGRAPH-5660)

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

Programming

C
\u5660
JavaScript
\u5660
Java
\u5660
Json
\u5660
Python
\u5660
Perl
\x{5660}
PHP
\x{5660}
Ruby
\u{5660}
Rust
\u{5660}
Go
\u5660

Web

CSS
\005660
HtmlDecimal
噠
HtmlHexadecimal
噠
Url
%E5%99%A0

Code

MD5
a2d3376ee3c08a9c8c5bfadcbd6c90ef
Sha1
9a7e7e47c145b5187fe60d31d9d86c9079823413
Base64
5Zmg

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u5660';
console.log(char);  // Output: 噠

Java:

char c = '\u5660';
System.out.println(c);  // Output: 噠

JSON:

{"text": "\u5660"}  // Value: 噠

Python:

char = '\u5660'
print(char)  # Output: 噠

Perl:

my $char = "\x{5660}";
print $char;  # Output: 噠

PHP:

$char = "\x{5660}";
echo $char;  // Output: 噠

Ruby:

char = "\u{5660}"
puts char  # Output: 噠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005660";  /* Display: 噠 */
}

HTML Decimal:

<p>HTML decimal: &#22112;</p>  <!-- Display: 噠 -->

HTML Hexadecimal:

<p>HTML hex: &#x5660;</p>  <!-- Display: 噠 -->

URL Encoding:

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

Encodings

MD5:

a2d3376ee3c08a9c8c5bfadcbd6c90ef

SHA1:

9a7e7e47c145b5187fe60d31d9d86c9079823413

Base64:

5Zmg