Unicode Finder

"唃" U+5503(CJK UNIFIED IDEOGRAPH-5503)

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

Programming

C
\u5503
JavaScript
\u5503
Java
\u5503
Json
\u5503
Python
\u5503
Perl
\x{5503}
PHP
\x{5503}
Ruby
\u{5503}
Rust
\u{5503}
Go
\u5503

Web

CSS
\005503
HtmlDecimal
唃
HtmlHexadecimal
唃
Url
%E5%94%83

Code

MD5
985c6cd8cb9f5c03610852010c21fcdb
Sha1
c525e502068abd838f31f604e3daff407e31403b
Base64
5ZSD

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u5503';
console.log(char);  // Output: 唃

Java:

char c = '\u5503';
System.out.println(c);  // Output: 唃

JSON:

{"text": "\u5503"}  // Value: 唃

Python:

char = '\u5503'
print(char)  # Output: 唃

Perl:

my $char = "\x{5503}";
print $char;  # Output: 唃

PHP:

$char = "\x{5503}";
echo $char;  // Output: 唃

Ruby:

char = "\u{5503}"
puts char  # Output: 唃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005503";  /* Display: 唃 */
}

HTML Decimal:

<p>HTML decimal: &#21763;</p>  <!-- Display: 唃 -->

HTML Hexadecimal:

<p>HTML hex: &#x5503;</p>  <!-- Display: 唃 -->

URL Encoding:

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

Encodings

MD5:

985c6cd8cb9f5c03610852010c21fcdb

SHA1:

c525e502068abd838f31f604e3daff407e31403b

Base64:

5ZSD