Unicode Finder

"唌" U+550C(CJK UNIFIED IDEOGRAPH-550C)

U+550C
Nombre del Bloque
CJK Unified Ideographs
Nombre
CJK UNIFIED IDEOGRAPH-550C

Programming

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

Web

CSS
\00550C
HtmlDecimal
唌
HtmlHexadecimal
唌
Url
%E5%94%8C

Code

MD5
a054625e69ed54006cba3ae41c53c9b2
Sha1
1e2137932442660e2b6c5402c04117f50b2f32af
Base64
5ZSM

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u550C';
console.log(char);  // Output: 唌

Java:

char c = '\u550C';
System.out.println(c);  // Output: 唌

JSON:

{"text": "\u550C"}  // Value: 唌

Python:

char = '\u550C'
print(char)  # Output: 唌

Perl:

my $char = "\x{550C}";
print $char;  # Output: 唌

PHP:

$char = "\x{550C}";
echo $char;  // Output: 唌

Ruby:

char = "\u{550C}"
puts char  # Output: 唌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21772;</p>  <!-- Display: 唌 -->

HTML Hexadecimal:

<p>HTML hex: &#x550C;</p>  <!-- Display: 唌 -->

URL Encoding:

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

Encodings

MD5:

a054625e69ed54006cba3ae41c53c9b2

SHA1:

1e2137932442660e2b6c5402c04117f50b2f32af

Base64:

5ZSM