Unicode Finder

"耕" U+8015(CJK UNIFIED IDEOGRAPH-8015)

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

Programming

C
\u8015
JavaScript
\u8015
Java
\u8015
Json
\u8015
Python
\u8015
Perl
\x{8015}
PHP
\x{8015}
Ruby
\u{8015}
Rust
\u{8015}
Go
\u8015

Web

CSS
\008015
HtmlDecimal
耕
HtmlHexadecimal
耕
Url
%E8%80%95

Code

MD5
326131fdcccf78457fb3d6101e5e8d02
Sha1
d3a97facd48d99284de12e8fa6ef239395baeac0
Base64
6ICV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8015';
console.log(char);  // Output: 耕

Java:

char c = '\u8015';
System.out.println(c);  // Output: 耕

JSON:

{"text": "\u8015"}  // Value: 耕

Python:

char = '\u8015'
print(char)  # Output: 耕

Perl:

my $char = "\x{8015}";
print $char;  # Output: 耕

PHP:

$char = "\x{8015}";
echo $char;  // Output: 耕

Ruby:

char = "\u{8015}"
puts char  # Output: 耕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008015";  /* Display: 耕 */
}

HTML Decimal:

<p>HTML decimal: &#32789;</p>  <!-- Display: 耕 -->

HTML Hexadecimal:

<p>HTML hex: &#x8015;</p>  <!-- Display: 耕 -->

URL Encoding:

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

Encodings

MD5:

326131fdcccf78457fb3d6101e5e8d02

SHA1:

d3a97facd48d99284de12e8fa6ef239395baeac0

Base64:

6ICV