Unicode Finder

"耦" U+8026(CJK UNIFIED IDEOGRAPH-8026)

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

Programming

C
\u8026
JavaScript
\u8026
Java
\u8026
Json
\u8026
Python
\u8026
Perl
\x{8026}
PHP
\x{8026}
Ruby
\u{8026}
Rust
\u{8026}
Go
\u8026

Web

CSS
\008026
HtmlDecimal
耦
HtmlHexadecimal
耦
Url
%E8%80%A6

Code

MD5
a85bd093e03610e207a27167147db7c8
Sha1
6eb0d72819f9818379cbc2edb70ecd088f63e153
Base64
6ICm

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8026';
console.log(char);  // Output: 耦

Java:

char c = '\u8026';
System.out.println(c);  // Output: 耦

JSON:

{"text": "\u8026"}  // Value: 耦

Python:

char = '\u8026'
print(char)  # Output: 耦

Perl:

my $char = "\x{8026}";
print $char;  # Output: 耦

PHP:

$char = "\x{8026}";
echo $char;  // Output: 耦

Ruby:

char = "\u{8026}"
puts char  # Output: 耦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008026";  /* Display: 耦 */
}

HTML Decimal:

<p>HTML decimal: &#32806;</p>  <!-- Display: 耦 -->

HTML Hexadecimal:

<p>HTML hex: &#x8026;</p>  <!-- Display: 耦 -->

URL Encoding:

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

Encodings

MD5:

a85bd093e03610e207a27167147db7c8

SHA1:

6eb0d72819f9818379cbc2edb70ecd088f63e153

Base64:

6ICm