Unicode Finder

"耓" U+8013(CJK UNIFIED IDEOGRAPH-8013)

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

Programming

C
\u8013
JavaScript
\u8013
Java
\u8013
Json
\u8013
Python
\u8013
Perl
\x{8013}
PHP
\x{8013}
Ruby
\u{8013}
Rust
\u{8013}
Go
\u8013

Web

CSS
\008013
HtmlDecimal
耓
HtmlHexadecimal
耓
Url
%E8%80%93

Code

MD5
7f3efc17f1e2c6fee60cd2ef22955d05
Sha1
5df261f19c9403e46fc7c2059f4a215e19c610f2
Base64
6ICT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8013';
console.log(char);  // Output: 耓

Java:

char c = '\u8013';
System.out.println(c);  // Output: 耓

JSON:

{"text": "\u8013"}  // Value: 耓

Python:

char = '\u8013'
print(char)  # Output: 耓

Perl:

my $char = "\x{8013}";
print $char;  # Output: 耓

PHP:

$char = "\x{8013}";
echo $char;  // Output: 耓

Ruby:

char = "\u{8013}"
puts char  # Output: 耓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008013";  /* Display: 耓 */
}

HTML Decimal:

<p>HTML decimal: &#32787;</p>  <!-- Display: 耓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8013;</p>  <!-- Display: 耓 -->

URL Encoding:

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

Encodings

MD5:

7f3efc17f1e2c6fee60cd2ef22955d05

SHA1:

5df261f19c9403e46fc7c2059f4a215e19c610f2

Base64:

6ICT