Unicode Finder

"唋" U+550B(CJK UNIFIED IDEOGRAPH-550B)

U+550B
Blockname
CJK Unified Ideographs
Name
CJK UNIFIED IDEOGRAPH-550B

Programming

C
\u550B
JavaScript
\u550B
Java
\u550B
Json
\u550B
Python
\u550B
Perl
\x{550B}
PHP
\x{550B}
Ruby
\u{550B}
Rust
\u{550B}
Go
\u550B

Web

CSS
\00550B
HtmlDecimal
唋
HtmlHexadecimal
唋
Url
%E5%94%8B

Code

MD5
555340db6874f026c234dd975e3f041d
Sha1
3b2e5eb666fa92392d8beba6f56a890b39760490
Base64
5ZSL

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u550B';
console.log(char);  // Output: 唋

Java:

char c = '\u550B';
System.out.println(c);  // Output: 唋

JSON:

{"text": "\u550B"}  // Value: 唋

Python:

char = '\u550B'
print(char)  # Output: 唋

Perl:

my $char = "\x{550B}";
print $char;  # Output: 唋

PHP:

$char = "\x{550B}";
echo $char;  // Output: 唋

Ruby:

char = "\u{550B}"
puts char  # Output: 唋

Rust:

let c = '\u{550B}';
println!("{}", c);  // Output: 唋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00550B";  /* Display: 唋 */
}

HTML Decimal:

<p>HTML decimal: &#21771;</p>  <!-- Display: 唋 -->

HTML Hexadecimal:

<p>HTML hex: &#x550B;</p>  <!-- Display: 唋 -->

URL Encoding:

// 唋 URL encoding
https://unicodefinder.com/search.php?query=%E5%94%8B

Encodings

MD5:

555340db6874f026c234dd975e3f041d

SHA1:

3b2e5eb666fa92392d8beba6f56a890b39760490

Base64:

5ZSL