Unicode Finder

"唖" U+5516(CJK UNIFIED IDEOGRAPH-5516)

U+5516
Blockname
CJK Unified Ideographs
Name
CJK UNIFIED IDEOGRAPH-5516

Programming

C
\u5516
JavaScript
\u5516
Java
\u5516
Json
\u5516
Python
\u5516
Perl
\x{5516}
PHP
\x{5516}
Ruby
\u{5516}
Rust
\u{5516}
Go
\u5516

Web

CSS
\005516
HtmlDecimal
唖
HtmlHexadecimal
唖
Url
%E5%94%96

Code

MD5
3d242f003f94734b2686d75e754c0757
Sha1
295ef31c53c7b83b2ea6f3174846a770e963e3ef
Base64
5ZSW

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u5516';
console.log(char);  // Output: 唖

Java:

char c = '\u5516';
System.out.println(c);  // Output: 唖

JSON:

{"text": "\u5516"}  // Value: 唖

Python:

char = '\u5516'
print(char)  # Output: 唖

Perl:

my $char = "\x{5516}";
print $char;  # Output: 唖

PHP:

$char = "\x{5516}";
echo $char;  // Output: 唖

Ruby:

char = "\u{5516}"
puts char  # Output: 唖

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005516";  /* Display: 唖 */
}

HTML Decimal:

<p>HTML decimal: &#21782;</p>  <!-- Display: 唖 -->

HTML Hexadecimal:

<p>HTML hex: &#x5516;</p>  <!-- Display: 唖 -->

URL Encoding:

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

Encodings

MD5:

3d242f003f94734b2686d75e754c0757

SHA1:

295ef31c53c7b83b2ea6f3174846a770e963e3ef

Base64:

5ZSW