Unicode Finder

"耶" U+8036(CJK UNIFIED IDEOGRAPH-8036)

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

Programming

C
\u8036
JavaScript
\u8036
Java
\u8036
Json
\u8036
Python
\u8036
Perl
\x{8036}
PHP
\x{8036}
Ruby
\u{8036}
Rust
\u{8036}
Go
\u8036

Web

CSS
\008036
HtmlDecimal
耶
HtmlHexadecimal
耶
Url
%E8%80%B6

Code

MD5
7f74405ce652c793c7891c226207ab15
Sha1
fec783cfa8693de66ecaf851d2d5887f2b573694
Base64
6IC2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8036';
console.log(char);  // Output: 耶

Java:

char c = '\u8036';
System.out.println(c);  // Output: 耶

JSON:

{"text": "\u8036"}  // Value: 耶

Python:

char = '\u8036'
print(char)  # Output: 耶

Perl:

my $char = "\x{8036}";
print $char;  # Output: 耶

PHP:

$char = "\x{8036}";
echo $char;  // Output: 耶

Ruby:

char = "\u{8036}"
puts char  # Output: 耶

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008036";  /* Display: 耶 */
}

HTML Decimal:

<p>HTML decimal: &#32822;</p>  <!-- Display: 耶 -->

HTML Hexadecimal:

<p>HTML hex: &#x8036;</p>  <!-- Display: 耶 -->

URL Encoding:

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

Encodings

MD5:

7f74405ce652c793c7891c226207ab15

SHA1:

fec783cfa8693de66ecaf851d2d5887f2b573694

Base64:

6IC2