Unicode Finder

"唨" U+5528(CJK UNIFIED IDEOGRAPH-5528)

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

Programming

C
\u5528
JavaScript
\u5528
Java
\u5528
Json
\u5528
Python
\u5528
Perl
\x{5528}
PHP
\x{5528}
Ruby
\u{5528}
Rust
\u{5528}
Go
\u5528

Web

CSS
\005528
HtmlDecimal
唨
HtmlHexadecimal
唨
Url
%E5%94%A8

Code

MD5
fdb5a459e40ea01656fc0d93ef8d330d
Sha1
3d53f10c01bb6697433900a22a723d192763202d
Base64
5ZSo

Verwendungsbeispiele

Programming Languages

C:

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

JavaScript:

const char = '\u5528';
console.log(char);  // Output: 唨

Java:

char c = '\u5528';
System.out.println(c);  // Output: 唨

JSON:

{"text": "\u5528"}  // Value: 唨

Python:

char = '\u5528'
print(char)  # Output: 唨

Perl:

my $char = "\x{5528}";
print $char;  # Output: 唨

PHP:

$char = "\x{5528}";
echo $char;  // Output: 唨

Ruby:

char = "\u{5528}"
puts char  # Output: 唨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005528";  /* Display: 唨 */
}

HTML Decimal:

<p>HTML decimal: &#21800;</p>  <!-- Display: 唨 -->

HTML Hexadecimal:

<p>HTML hex: &#x5528;</p>  <!-- Display: 唨 -->

URL Encoding:

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

Encodings

MD5:

fdb5a459e40ea01656fc0d93ef8d330d

SHA1:

3d53f10c01bb6697433900a22a723d192763202d

Base64:

5ZSo