Unicode Finder

"耡" U+8021(CJK UNIFIED IDEOGRAPH-8021)

U+8021
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8021

Programming

C
\u8021
JavaScript
\u8021
Java
\u8021
Json
\u8021
Python
\u8021
Perl
\x{8021}
PHP
\x{8021}
Ruby
\u{8021}
Rust
\u{8021}
Go
\u8021

Web

CSS
\008021
HtmlDecimal
耡
HtmlHexadecimal
耡
Url
%E8%80%A1

Code

MD5
8ee1bc763d09d37857704846351cee8e
Sha1
cbc216e73d3f0442a313ae8e303fdab408d79835
Base64
6ICh

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8021';
console.log(char);  // Output: 耡

Java:

char c = '\u8021';
System.out.println(c);  // Output: 耡

JSON:

{"text": "\u8021"}  // Value: 耡

Python:

char = '\u8021'
print(char)  # Output: 耡

Perl:

my $char = "\x{8021}";
print $char;  # Output: 耡

PHP:

$char = "\x{8021}";
echo $char;  // Output: 耡

Ruby:

char = "\u{8021}"
puts char  # Output: 耡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008021";  /* Display: 耡 */
}

HTML Decimal:

<p>HTML decimal: &#32801;</p>  <!-- Display: 耡 -->

HTML Hexadecimal:

<p>HTML hex: &#x8021;</p>  <!-- Display: 耡 -->

URL Encoding:

// 耡 URL encoding
https://unicodefinder.com/search.php?query=%E8%80%A1

Encodings

MD5:

8ee1bc763d09d37857704846351cee8e

SHA1:

cbc216e73d3f0442a313ae8e303fdab408d79835

Base64:

6ICh