Unicode Finder

"耏" U+800F(CJK UNIFIED IDEOGRAPH-800F)

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

Programming

C
\u800F
JavaScript
\u800F
Java
\u800F
Json
\u800F
Python
\u800F
Perl
\x{800F}
PHP
\x{800F}
Ruby
\u{800F}
Rust
\u{800F}
Go
\u800F

Web

CSS
\00800F
HtmlDecimal
耏
HtmlHexadecimal
耏
Url
%E8%80%8F

Code

MD5
da709752aaac44c112fd55a8feb9e95b
Sha1
98220fe10f5642399c3a9c30c9df630dad457c83
Base64
6ICP

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u800F';
console.log(char);  // Output: 耏

Java:

char c = '\u800F';
System.out.println(c);  // Output: 耏

JSON:

{"text": "\u800F"}  // Value: 耏

Python:

char = '\u800F'
print(char)  # Output: 耏

Perl:

my $char = "\x{800F}";
print $char;  # Output: 耏

PHP:

$char = "\x{800F}";
echo $char;  // Output: 耏

Ruby:

char = "\u{800F}"
puts char  # Output: 耏

Rust:

let c = '\u{800F}';
println!("{}", c);  // Output: 耏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00800F";  /* Display: 耏 */
}

HTML Decimal:

<p>HTML decimal: &#32783;</p>  <!-- Display: 耏 -->

HTML Hexadecimal:

<p>HTML hex: &#x800F;</p>  <!-- Display: 耏 -->

URL Encoding:

// 耏 URL encoding
https://unicodefinder.com/search.php?query=%E8%80%8F

Encodings

MD5:

da709752aaac44c112fd55a8feb9e95b

SHA1:

98220fe10f5642399c3a9c30c9df630dad457c83

Base64:

6ICP