Unicode Finder

"唒" U+5512(CJK UNIFIED IDEOGRAPH-5512)

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

Programming

C
\u5512
JavaScript
\u5512
Java
\u5512
Json
\u5512
Python
\u5512
Perl
\x{5512}
PHP
\x{5512}
Ruby
\u{5512}
Rust
\u{5512}
Go
\u5512

Web

CSS
\005512
HtmlDecimal
唒
HtmlHexadecimal
唒
Url
%E5%94%92

Code

MD5
95b71fc55f129894d808e2a2649f5a5a
Sha1
4b2890d3f2d8ec951aff281bce051e0bb383e756
Base64
5ZSS

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u5512';
console.log(char);  // Output: 唒

Java:

char c = '\u5512';
System.out.println(c);  // Output: 唒

JSON:

{"text": "\u5512"}  // Value: 唒

Python:

char = '\u5512'
print(char)  # Output: 唒

Perl:

my $char = "\x{5512}";
print $char;  # Output: 唒

PHP:

$char = "\x{5512}";
echo $char;  // Output: 唒

Ruby:

char = "\u{5512}"
puts char  # Output: 唒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005512";  /* Display: 唒 */
}

HTML Decimal:

<p>HTML decimal: &#21778;</p>  <!-- Display: 唒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5512;</p>  <!-- Display: 唒 -->

URL Encoding:

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

Encodings

MD5:

95b71fc55f129894d808e2a2649f5a5a

SHA1:

4b2890d3f2d8ec951aff281bce051e0bb383e756

Base64:

5ZSS