Unicode Finder

"耐" U+8010(CJK UNIFIED IDEOGRAPH-8010)

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

Programming

C
\u8010
JavaScript
\u8010
Java
\u8010
Json
\u8010
Python
\u8010
Perl
\x{8010}
PHP
\x{8010}
Ruby
\u{8010}
Rust
\u{8010}
Go
\u8010

Web

CSS
\008010
HtmlDecimal
耐
HtmlHexadecimal
耐
Url
%E8%80%90

Code

MD5
db326e42e4850671332485312a166acf
Sha1
089931c87454a364e9438a1db10598aa879860a3
Base64
6ICQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8010';
console.log(char);  // Output: 耐

Java:

char c = '\u8010';
System.out.println(c);  // Output: 耐

JSON:

{"text": "\u8010"}  // Value: 耐

Python:

char = '\u8010'
print(char)  # Output: 耐

Perl:

my $char = "\x{8010}";
print $char;  # Output: 耐

PHP:

$char = "\x{8010}";
echo $char;  // Output: 耐

Ruby:

char = "\u{8010}"
puts char  # Output: 耐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008010";  /* Display: 耐 */
}

HTML Decimal:

<p>HTML decimal: &#32784;</p>  <!-- Display: 耐 -->

HTML Hexadecimal:

<p>HTML hex: &#x8010;</p>  <!-- Display: 耐 -->

URL Encoding:

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

Encodings

MD5:

db326e42e4850671332485312a166acf

SHA1:

089931c87454a364e9438a1db10598aa879860a3

Base64:

6ICQ