Unicode Finder

"呂" U+5442(CJK UNIFIED IDEOGRAPH-5442)

U+5442
Blokk Neve
CJK Unified Ideographs
Név
CJK UNIFIED IDEOGRAPH-5442

Programming

C
\u5442
JavaScript
\u5442
Java
\u5442
Json
\u5442
Python
\u5442
Perl
\x{5442}
PHP
\x{5442}
Ruby
\u{5442}
Rust
\u{5442}
Go
\u5442

Web

CSS
\005442
HtmlDecimal
呂
HtmlHexadecimal
呂
Url
%E5%91%82

Code

MD5
3f00516af4b57d24dae31863501abad2
Sha1
9bcae380442ff1ac8d4d3e0e02c19d635bc1d1e5
Base64
5ZGC

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u5442';
console.log(char);  // Output: 呂

Java:

char c = '\u5442';
System.out.println(c);  // Output: 呂

JSON:

{"text": "\u5442"}  // Value: 呂

Python:

char = '\u5442'
print(char)  # Output: 呂

Perl:

my $char = "\x{5442}";
print $char;  # Output: 呂

PHP:

$char = "\x{5442}";
echo $char;  // Output: 呂

Ruby:

char = "\u{5442}"
puts char  # Output: 呂

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005442";  /* Display: 呂 */
}

HTML Decimal:

<p>HTML decimal: &#21570;</p>  <!-- Display: 呂 -->

HTML Hexadecimal:

<p>HTML hex: &#x5442;</p>  <!-- Display: 呂 -->

URL Encoding:

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

Encodings

MD5:

3f00516af4b57d24dae31863501abad2

SHA1:

9bcae380442ff1ac8d4d3e0e02c19d635bc1d1e5

Base64:

5ZGC