Unicode Finder

"啇" U+5547(CJK UNIFIED IDEOGRAPH-5547)

U+5547
Blocknamn
CJK Unified Ideographs
Namn
CJK UNIFIED IDEOGRAPH-5547

Programming

C
\u5547
JavaScript
\u5547
Java
\u5547
Json
\u5547
Python
\u5547
Perl
\x{5547}
PHP
\x{5547}
Ruby
\u{5547}
Rust
\u{5547}
Go
\u5547

Web

CSS
\005547
HtmlDecimal
啇
HtmlHexadecimal
啇
Url
%E5%95%87

Code

MD5
57c84219acea71f58d321eda1d445d82
Sha1
04431967776f54f1c5b398e9918ebba29071e8c7
Base64
5ZWH

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u5547';
console.log(char);  // Output: 啇

Java:

char c = '\u5547';
System.out.println(c);  // Output: 啇

JSON:

{"text": "\u5547"}  // Value: 啇

Python:

char = '\u5547'
print(char)  # Output: 啇

Perl:

my $char = "\x{5547}";
print $char;  # Output: 啇

PHP:

$char = "\x{5547}";
echo $char;  // Output: 啇

Ruby:

char = "\u{5547}"
puts char  # Output: 啇

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005547";  /* Display: 啇 */
}

HTML Decimal:

<p>HTML decimal: &#21831;</p>  <!-- Display: 啇 -->

HTML Hexadecimal:

<p>HTML hex: &#x5547;</p>  <!-- Display: 啇 -->

URL Encoding:

// 啇 URL encoding
https://unicodefinder.com/search.php?query=%E5%95%87

Encodings

MD5:

57c84219acea71f58d321eda1d445d82

SHA1:

04431967776f54f1c5b398e9918ebba29071e8c7

Base64:

5ZWH