Unicode Finder

"而" U+800C(CJK UNIFIED IDEOGRAPH-800C)

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

Programming

C
\u800C
JavaScript
\u800C
Java
\u800C
Json
\u800C
Python
\u800C
Perl
\x{800C}
PHP
\x{800C}
Ruby
\u{800C}
Rust
\u{800C}
Go
\u800C

Web

CSS
\00800C
HtmlDecimal
而
HtmlHexadecimal
而
Url
%E8%80%8C

Code

MD5
a8b816ed03ae6264f190f5f804793a89
Sha1
fca82746e870f8935604f126534805d673ba513d
Base64
6ICM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u800C';
console.log(char);  // Output: 而

Java:

char c = '\u800C';
System.out.println(c);  // Output: 而

JSON:

{"text": "\u800C"}  // Value: 而

Python:

char = '\u800C'
print(char)  # Output: 而

Perl:

my $char = "\x{800C}";
print $char;  # Output: 而

PHP:

$char = "\x{800C}";
echo $char;  // Output: 而

Ruby:

char = "\u{800C}"
puts char  # Output: 而

Rust:

let c = '\u{800C}';
println!("{}", c);  // Output: 而

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00800C";  /* Display: 而 */
}

HTML Decimal:

<p>HTML decimal: &#32780;</p>  <!-- Display: 而 -->

HTML Hexadecimal:

<p>HTML hex: &#x800C;</p>  <!-- Display: 而 -->

URL Encoding:

// 而 URL encoding
https://unicodefinder.com/search.php?query=%E8%80%8C

Encodings

MD5:

a8b816ed03ae6264f190f5f804793a89

SHA1:

fca82746e870f8935604f126534805d673ba513d

Base64:

6ICM