Unicode Finder

"吕" U+5415(CJK UNIFIED IDEOGRAPH-5415)

U+5415
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-5415

Programming

C
\u5415
JavaScript
\u5415
Java
\u5415
Json
\u5415
Python
\u5415
Perl
\x{5415}
PHP
\x{5415}
Ruby
\u{5415}
Rust
\u{5415}
Go
\u5415

Web

CSS
\005415
HtmlDecimal
吕
HtmlHexadecimal
吕
Url
%E5%90%95

Code

MD5
cea1bc6e1bb31e1eced6ad8f052bfa33
Sha1
b3c708eba41ac63186be946d44d990b687942684
Base64
5ZCV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5415';
console.log(char);  // Output: 吕

Java:

char c = '\u5415';
System.out.println(c);  // Output: 吕

JSON:

{"text": "\u5415"}  // Value: 吕

Python:

char = '\u5415'
print(char)  # Output: 吕

Perl:

my $char = "\x{5415}";
print $char;  # Output: 吕

PHP:

$char = "\x{5415}";
echo $char;  // Output: 吕

Ruby:

char = "\u{5415}"
puts char  # Output: 吕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005415";  /* Display: 吕 */
}

HTML Decimal:

<p>HTML decimal: &#21525;</p>  <!-- Display: 吕 -->

HTML Hexadecimal:

<p>HTML hex: &#x5415;</p>  <!-- Display: 吕 -->

URL Encoding:

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

Encodings

MD5:

cea1bc6e1bb31e1eced6ad8f052bfa33

SHA1:

b3c708eba41ac63186be946d44d990b687942684

Base64:

5ZCV