Unicode Finder

"耹" U+8039(CJK UNIFIED IDEOGRAPH-8039)

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

Programming

C
\u8039
JavaScript
\u8039
Java
\u8039
Json
\u8039
Python
\u8039
Perl
\x{8039}
PHP
\x{8039}
Ruby
\u{8039}
Rust
\u{8039}
Go
\u8039

Web

CSS
\008039
HtmlDecimal
耹
HtmlHexadecimal
耹
Url
%E8%80%B9

Code

MD5
1df498b9a537899705825f91bb359997
Sha1
4a7fe943b9be3dd9908113e9198caa99ebb3add6
Base64
6IC5

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8039';
console.log(char);  // Output: 耹

Java:

char c = '\u8039';
System.out.println(c);  // Output: 耹

JSON:

{"text": "\u8039"}  // Value: 耹

Python:

char = '\u8039'
print(char)  # Output: 耹

Perl:

my $char = "\x{8039}";
print $char;  # Output: 耹

PHP:

$char = "\x{8039}";
echo $char;  // Output: 耹

Ruby:

char = "\u{8039}"
puts char  # Output: 耹

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008039";  /* Display: 耹 */
}

HTML Decimal:

<p>HTML decimal: &#32825;</p>  <!-- Display: 耹 -->

HTML Hexadecimal:

<p>HTML hex: &#x8039;</p>  <!-- Display: 耹 -->

URL Encoding:

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

Encodings

MD5:

1df498b9a537899705825f91bb359997

SHA1:

4a7fe943b9be3dd9908113e9198caa99ebb3add6

Base64:

6IC5