Unicode Finder

"呉" U+5449(CJK UNIFIED IDEOGRAPH-5449)

U+5449
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-5449

Programming

C
\u5449
JavaScript
\u5449
Java
\u5449
Json
\u5449
Python
\u5449
Perl
\x{5449}
PHP
\x{5449}
Ruby
\u{5449}
Rust
\u{5449}
Go
\u5449

Web

CSS
\005449
HtmlDecimal
呉
HtmlHexadecimal
呉
Url
%E5%91%89

Code

MD5
eb4395e1fe11df91f158051d81ebd5a2
Sha1
05940f3150d7d1cf7cedab279d827ed1bb13f693
Base64
5ZGJ

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u5449';
console.log(char);  // Output: 呉

Java:

char c = '\u5449';
System.out.println(c);  // Output: 呉

JSON:

{"text": "\u5449"}  // Value: 呉

Python:

char = '\u5449'
print(char)  # Output: 呉

Perl:

my $char = "\x{5449}";
print $char;  # Output: 呉

PHP:

$char = "\x{5449}";
echo $char;  // Output: 呉

Ruby:

char = "\u{5449}"
puts char  # Output: 呉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005449";  /* Display: 呉 */
}

HTML Decimal:

<p>HTML decimal: &#21577;</p>  <!-- Display: 呉 -->

HTML Hexadecimal:

<p>HTML hex: &#x5449;</p>  <!-- Display: 呉 -->

URL Encoding:

// 呉 URL encoding
https://unicodefinder.com/search.php?query=%E5%91%89

Encodings

MD5:

eb4395e1fe11df91f158051d81ebd5a2

SHA1:

05940f3150d7d1cf7cedab279d827ed1bb13f693

Base64:

5ZGJ