Unicode Finder

"唇" U+5507(CJK UNIFIED IDEOGRAPH-5507)

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

Programming

C
\u5507
JavaScript
\u5507
Java
\u5507
Json
\u5507
Python
\u5507
Perl
\x{5507}
PHP
\x{5507}
Ruby
\u{5507}
Rust
\u{5507}
Go
\u5507

Web

CSS
\005507
HtmlDecimal
唇
HtmlHexadecimal
唇
Url
%E5%94%87

Code

MD5
e830f1715c57e5af923bd6d207b13ec0
Sha1
3b13d97e8f3e28a56f22ccc62a6b2ecc23864294
Base64
5ZSH

Ejemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u5507';
console.log(char);  // Output: 唇

Java:

char c = '\u5507';
System.out.println(c);  // Output: 唇

JSON:

{"text": "\u5507"}  // Value: 唇

Python:

char = '\u5507'
print(char)  # Output: 唇

Perl:

my $char = "\x{5507}";
print $char;  # Output: 唇

PHP:

$char = "\x{5507}";
echo $char;  // Output: 唇

Ruby:

char = "\u{5507}"
puts char  # Output: 唇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005507";  /* Display: 唇 */
}

HTML Decimal:

<p>HTML decimal: &#21767;</p>  <!-- Display: 唇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5507;</p>  <!-- Display: 唇 -->

URL Encoding:

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

Encodings

MD5:

e830f1715c57e5af923bd6d207b13ec0

SHA1:

3b13d97e8f3e28a56f22ccc62a6b2ecc23864294

Base64:

5ZSH