Unicode Finder

"耩" U+8029(CJK UNIFIED IDEOGRAPH-8029)

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

Programming

C
\u8029
JavaScript
\u8029
Java
\u8029
Json
\u8029
Python
\u8029
Perl
\x{8029}
PHP
\x{8029}
Ruby
\u{8029}
Rust
\u{8029}
Go
\u8029

Web

CSS
\008029
HtmlDecimal
耩
HtmlHexadecimal
耩
Url
%E8%80%A9

Code

MD5
1feb3126801a52c4bd75f799a44c7c3e
Sha1
d4bdb3051260a510250e35dbbe42fb78535c7c6f
Base64
6ICp

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8029';
console.log(char);  // Output: 耩

Java:

char c = '\u8029';
System.out.println(c);  // Output: 耩

JSON:

{"text": "\u8029"}  // Value: 耩

Python:

char = '\u8029'
print(char)  # Output: 耩

Perl:

my $char = "\x{8029}";
print $char;  # Output: 耩

PHP:

$char = "\x{8029}";
echo $char;  // Output: 耩

Ruby:

char = "\u{8029}"
puts char  # Output: 耩

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008029";  /* Display: 耩 */
}

HTML Decimal:

<p>HTML decimal: &#32809;</p>  <!-- Display: 耩 -->

HTML Hexadecimal:

<p>HTML hex: &#x8029;</p>  <!-- Display: 耩 -->

URL Encoding:

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

Encodings

MD5:

1feb3126801a52c4bd75f799a44c7c3e

SHA1:

d4bdb3051260a510250e35dbbe42fb78535c7c6f

Base64:

6ICp