Unicode Finder

"耢" U+8022(CJK UNIFIED IDEOGRAPH-8022)

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

Programming

C
\u8022
JavaScript
\u8022
Java
\u8022
Json
\u8022
Python
\u8022
Perl
\x{8022}
PHP
\x{8022}
Ruby
\u{8022}
Rust
\u{8022}
Go
\u8022

Web

CSS
\008022
HtmlDecimal
耢
HtmlHexadecimal
耢
Url
%E8%80%A2

Code

MD5
35513a5ee1cd3f0fc0a0cff272e989d0
Sha1
6591ae56b224374e94db04824d40f67748ab95bb
Base64
6ICi

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8022';
console.log(char);  // Output: 耢

Java:

char c = '\u8022';
System.out.println(c);  // Output: 耢

JSON:

{"text": "\u8022"}  // Value: 耢

Python:

char = '\u8022'
print(char)  # Output: 耢

Perl:

my $char = "\x{8022}";
print $char;  # Output: 耢

PHP:

$char = "\x{8022}";
echo $char;  // Output: 耢

Ruby:

char = "\u{8022}"
puts char  # Output: 耢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008022";  /* Display: 耢 */
}

HTML Decimal:

<p>HTML decimal: &#32802;</p>  <!-- Display: 耢 -->

HTML Hexadecimal:

<p>HTML hex: &#x8022;</p>  <!-- Display: 耢 -->

URL Encoding:

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

Encodings

MD5:

35513a5ee1cd3f0fc0a0cff272e989d0

SHA1:

6591ae56b224374e94db04824d40f67748ab95bb

Base64:

6ICi