Unicode Finder

"呭" U+546D(CJK UNIFIED IDEOGRAPH-546D)

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

Programming

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

Web

CSS
\00546D
HtmlDecimal
呭
HtmlHexadecimal
呭
Url
%E5%91%AD

Code

MD5
0e4199efbf50156ca0592ee1787b0741
Sha1
de9afa8dd018550d315ab562de1391973a6154ba
Base64
5ZGt

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u546D';
console.log(char);  // Output: 呭

Java:

char c = '\u546D';
System.out.println(c);  // Output: 呭

JSON:

{"text": "\u546D"}  // Value: 呭

Python:

char = '\u546D'
print(char)  # Output: 呭

Perl:

my $char = "\x{546D}";
print $char;  # Output: 呭

PHP:

$char = "\x{546D}";
echo $char;  // Output: 呭

Ruby:

char = "\u{546D}"
puts char  # Output: 呭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#21613;</p>  <!-- Display: 呭 -->

HTML Hexadecimal:

<p>HTML hex: &#x546D;</p>  <!-- Display: 呭 -->

URL Encoding:

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

Encodings

MD5:

0e4199efbf50156ca0592ee1787b0741

SHA1:

de9afa8dd018550d315ab562de1391973a6154ba

Base64:

5ZGt