Unicode Finder

"耷" U+8037(CJK UNIFIED IDEOGRAPH-8037)

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

Programming

C
\u8037
JavaScript
\u8037
Java
\u8037
Json
\u8037
Python
\u8037
Perl
\x{8037}
PHP
\x{8037}
Ruby
\u{8037}
Rust
\u{8037}
Go
\u8037

Web

CSS
\008037
HtmlDecimal
耷
HtmlHexadecimal
耷
Url
%E8%80%B7

Code

MD5
639f3a6b62dd69b6c16640c3059c80e3
Sha1
6d8b53af4b6029b30ae74965916f4b37fbc2f7cb
Base64
6IC3

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8037';
console.log(char);  // Output: 耷

Java:

char c = '\u8037';
System.out.println(c);  // Output: 耷

JSON:

{"text": "\u8037"}  // Value: 耷

Python:

char = '\u8037'
print(char)  # Output: 耷

Perl:

my $char = "\x{8037}";
print $char;  # Output: 耷

PHP:

$char = "\x{8037}";
echo $char;  // Output: 耷

Ruby:

char = "\u{8037}"
puts char  # Output: 耷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008037";  /* Display: 耷 */
}

HTML Decimal:

<p>HTML decimal: &#32823;</p>  <!-- Display: 耷 -->

HTML Hexadecimal:

<p>HTML hex: &#x8037;</p>  <!-- Display: 耷 -->

URL Encoding:

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

Encodings

MD5:

639f3a6b62dd69b6c16640c3059c80e3

SHA1:

6d8b53af4b6029b30ae74965916f4b37fbc2f7cb

Base64:

6IC3