Unicode Finder

"耑" U+8011(CJK UNIFIED IDEOGRAPH-8011)

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

Programming

C
\u8011
JavaScript
\u8011
Java
\u8011
Json
\u8011
Python
\u8011
Perl
\x{8011}
PHP
\x{8011}
Ruby
\u{8011}
Rust
\u{8011}
Go
\u8011

Web

CSS
\008011
HtmlDecimal
耑
HtmlHexadecimal
耑
Url
%E8%80%91

Code

MD5
ff8e12eb1ffce687b61a82288bd172fa
Sha1
76412fd9363b6132932516f0bcfda15c01308a88
Base64
6ICR

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8011';
console.log(char);  // Output: 耑

Java:

char c = '\u8011';
System.out.println(c);  // Output: 耑

JSON:

{"text": "\u8011"}  // Value: 耑

Python:

char = '\u8011'
print(char)  # Output: 耑

Perl:

my $char = "\x{8011}";
print $char;  # Output: 耑

PHP:

$char = "\x{8011}";
echo $char;  // Output: 耑

Ruby:

char = "\u{8011}"
puts char  # Output: 耑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008011";  /* Display: 耑 */
}

HTML Decimal:

<p>HTML decimal: &#32785;</p>  <!-- Display: 耑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8011;</p>  <!-- Display: 耑 -->

URL Encoding:

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

Encodings

MD5:

ff8e12eb1ffce687b61a82288bd172fa

SHA1:

76412fd9363b6132932516f0bcfda15c01308a88

Base64:

6ICR