Unicode Finder

"啉" U+5549(CJK UNIFIED IDEOGRAPH-5549)

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

Programming

C
\u5549
JavaScript
\u5549
Java
\u5549
Json
\u5549
Python
\u5549
Perl
\x{5549}
PHP
\x{5549}
Ruby
\u{5549}
Rust
\u{5549}
Go
\u5549

Web

CSS
\005549
HtmlDecimal
啉
HtmlHexadecimal
啉
Url
%E5%95%89

Code

MD5
e614f0341e96830c51060a456fee86ec
Sha1
560c8b7a1bccc378cdd4c6339401071fc81adea4
Base64
5ZWJ

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u5549';
console.log(char);  // Output: 啉

Java:

char c = '\u5549';
System.out.println(c);  // Output: 啉

JSON:

{"text": "\u5549"}  // Value: 啉

Python:

char = '\u5549'
print(char)  # Output: 啉

Perl:

my $char = "\x{5549}";
print $char;  # Output: 啉

PHP:

$char = "\x{5549}";
echo $char;  // Output: 啉

Ruby:

char = "\u{5549}"
puts char  # Output: 啉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005549";  /* Display: 啉 */
}

HTML Decimal:

<p>HTML decimal: &#21833;</p>  <!-- Display: 啉 -->

HTML Hexadecimal:

<p>HTML hex: &#x5549;</p>  <!-- Display: 啉 -->

URL Encoding:

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

Encodings

MD5:

e614f0341e96830c51060a456fee86ec

SHA1:

560c8b7a1bccc378cdd4c6339401071fc81adea4

Base64:

5ZWJ