Unicode Finder

"唅" U+5505(CJK UNIFIED IDEOGRAPH-5505)

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

Programming

C
\u5505
JavaScript
\u5505
Java
\u5505
Json
\u5505
Python
\u5505
Perl
\x{5505}
PHP
\x{5505}
Ruby
\u{5505}
Rust
\u{5505}
Go
\u5505

Web

CSS
\005505
HtmlDecimal
唅
HtmlHexadecimal
唅
Url
%E5%94%85

Code

MD5
11807656d7dc93cc586c8b58a43b47c3
Sha1
3378b8ed568b859d3dbe9375b6aa87b7d6fd3fc8
Base64
5ZSF

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u5505';
console.log(char);  // Output: 唅

Java:

char c = '\u5505';
System.out.println(c);  // Output: 唅

JSON:

{"text": "\u5505"}  // Value: 唅

Python:

char = '\u5505'
print(char)  # Output: 唅

Perl:

my $char = "\x{5505}";
print $char;  # Output: 唅

PHP:

$char = "\x{5505}";
echo $char;  // Output: 唅

Ruby:

char = "\u{5505}"
puts char  # Output: 唅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005505";  /* Display: 唅 */
}

HTML Decimal:

<p>HTML decimal: &#21765;</p>  <!-- Display: 唅 -->

HTML Hexadecimal:

<p>HTML hex: &#x5505;</p>  <!-- Display: 唅 -->

URL Encoding:

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

Encodings

MD5:

11807656d7dc93cc586c8b58a43b47c3

SHA1:

3378b8ed568b859d3dbe9375b6aa87b7d6fd3fc8

Base64:

5ZSF