Unicode Finder

"呍" U+544D(CJK UNIFIED IDEOGRAPH-544D)

U+544D
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-544D

Programming

C
\u544D
JavaScript
\u544D
Java
\u544D
Json
\u544D
Python
\u544D
Perl
\x{544D}
PHP
\x{544D}
Ruby
\u{544D}
Rust
\u{544D}
Go
\u544D

Web

CSS
\00544D
HtmlDecimal
呍
HtmlHexadecimal
呍
Url
%E5%91%8D

Code

MD5
ec88c0141d01d41f6e50ba3f83779edf
Sha1
e8d81d2b95e5dce3f84f3eb539be94f914e6eae4
Base64
5ZGN

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u544D';
console.log(char);  // Output: 呍

Java:

char c = '\u544D';
System.out.println(c);  // Output: 呍

JSON:

{"text": "\u544D"}  // Value: 呍

Python:

char = '\u544D'
print(char)  # Output: 呍

Perl:

my $char = "\x{544D}";
print $char;  # Output: 呍

PHP:

$char = "\x{544D}";
echo $char;  // Output: 呍

Ruby:

char = "\u{544D}"
puts char  # Output: 呍

Rust:

let c = '\u{544D}';
println!("{}", c);  // Output: 呍

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00544D";  /* Display: 呍 */
}

HTML Decimal:

<p>HTML decimal: &#21581;</p>  <!-- Display: 呍 -->

HTML Hexadecimal:

<p>HTML hex: &#x544D;</p>  <!-- Display: 呍 -->

URL Encoding:

// 呍 URL encoding
https://unicodefinder.com/search.php?query=%E5%91%8D

Encodings

MD5:

ec88c0141d01d41f6e50ba3f83779edf

SHA1:

e8d81d2b95e5dce3f84f3eb539be94f914e6eae4

Base64:

5ZGN