Unicode Finder

"耨" U+8028(CJK UNIFIED IDEOGRAPH-8028)

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

Programming

C
\u8028
JavaScript
\u8028
Java
\u8028
Json
\u8028
Python
\u8028
Perl
\x{8028}
PHP
\x{8028}
Ruby
\u{8028}
Rust
\u{8028}
Go
\u8028

Web

CSS
\008028
HtmlDecimal
耨
HtmlHexadecimal
耨
Url
%E8%80%A8

Code

MD5
7d52d4e757f031934a3100920f5be79a
Sha1
7df1cf7d686833841d7d0783ecb1d2885df93bc5
Base64
6ICo

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8028';
console.log(char);  // Output: 耨

Java:

char c = '\u8028';
System.out.println(c);  // Output: 耨

JSON:

{"text": "\u8028"}  // Value: 耨

Python:

char = '\u8028'
print(char)  # Output: 耨

Perl:

my $char = "\x{8028}";
print $char;  # Output: 耨

PHP:

$char = "\x{8028}";
echo $char;  // Output: 耨

Ruby:

char = "\u{8028}"
puts char  # Output: 耨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008028";  /* Display: 耨 */
}

HTML Decimal:

<p>HTML decimal: &#32808;</p>  <!-- Display: 耨 -->

HTML Hexadecimal:

<p>HTML hex: &#x8028;</p>  <!-- Display: 耨 -->

URL Encoding:

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

Encodings

MD5:

7d52d4e757f031934a3100920f5be79a

SHA1:

7df1cf7d686833841d7d0783ecb1d2885df93bc5

Base64:

6ICo