Unicode Finder

"耔" U+8014(CJK UNIFIED IDEOGRAPH-8014)

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

Programming

C
\u8014
JavaScript
\u8014
Java
\u8014
Json
\u8014
Python
\u8014
Perl
\x{8014}
PHP
\x{8014}
Ruby
\u{8014}
Rust
\u{8014}
Go
\u8014

Web

CSS
\008014
HtmlDecimal
耔
HtmlHexadecimal
耔
Url
%E8%80%94

Code

MD5
e17a1461f2b834c93450ee937e5430a5
Sha1
b2045bed48dc7326a39fbfdc0df2d7a9ba05facf
Base64
6ICU

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8014';
console.log(char);  // Output: 耔

Java:

char c = '\u8014';
System.out.println(c);  // Output: 耔

JSON:

{"text": "\u8014"}  // Value: 耔

Python:

char = '\u8014'
print(char)  # Output: 耔

Perl:

my $char = "\x{8014}";
print $char;  # Output: 耔

PHP:

$char = "\x{8014}";
echo $char;  // Output: 耔

Ruby:

char = "\u{8014}"
puts char  # Output: 耔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008014";  /* Display: 耔 */
}

HTML Decimal:

<p>HTML decimal: &#32788;</p>  <!-- Display: 耔 -->

HTML Hexadecimal:

<p>HTML hex: &#x8014;</p>  <!-- Display: 耔 -->

URL Encoding:

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

Encodings

MD5:

e17a1461f2b834c93450ee937e5430a5

SHA1:

b2045bed48dc7326a39fbfdc0df2d7a9ba05facf

Base64:

6ICU