Unicode Finder

"赁" U+8D41(CJK UNIFIED IDEOGRAPH-8D41)

U+8D41
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8D41

Programming

C
\u8D41
JavaScript
\u8D41
Java
\u8D41
Json
\u8D41
Python
\u8D41
Perl
\x{8D41}
PHP
\x{8D41}
Ruby
\u{8D41}
Rust
\u{8D41}
Go
\u8D41

Web

CSS
\008D41
HtmlDecimal
赁
HtmlHexadecimal
赁
Url
%E8%B5%81

Code

MD5
f16b0d16c256fc2d45c24a776bd65e3a
Sha1
95f9150f96a15edbaeebd5c18d6b134d3ce8074c
Base64
6LWB

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8D41';
console.log(char);  // Output: 赁

Java:

char c = '\u8D41';
System.out.println(c);  // Output: 赁

JSON:

{"text": "\u8D41"}  // Value: 赁

Python:

char = '\u8D41'
print(char)  # Output: 赁

Perl:

my $char = "\x{8D41}";
print $char;  # Output: 赁

PHP:

$char = "\x{8D41}";
echo $char;  // Output: 赁

Ruby:

char = "\u{8D41}"
puts char  # Output: 赁

Rust:

let c = '\u{8D41}';
println!("{}", c);  // Output: 赁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008D41";  /* Display: 赁 */
}

HTML Decimal:

<p>HTML decimal: &#36161;</p>  <!-- Display: 赁 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D41;</p>  <!-- Display: 赁 -->

URL Encoding:

// 赁 URL encoding
https://unicodefinder.com/search.php?query=%E8%B5%81

Encodings

MD5:

f16b0d16c256fc2d45c24a776bd65e3a

SHA1:

95f9150f96a15edbaeebd5c18d6b134d3ce8074c

Base64:

6LWB