Unicode Finder

"肯" U+80AF(CJK UNIFIED IDEOGRAPH-80AF)

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

Programming

C
\u80AF
JavaScript
\u80AF
Java
\u80AF
Json
\u80AF
Python
\u80AF
Perl
\x{80AF}
PHP
\x{80AF}
Ruby
\u{80AF}
Rust
\u{80AF}
Go
\u80AF

Web

CSS
\0080AF
HtmlDecimal
肯
HtmlHexadecimal
肯
Url
%E8%82%AF

Code

MD5
aca1f8d9af91579afc5d6b823f7db7d5
Sha1
cd31fc53d564b265044351dc8eb5b082b0eab03a
Base64
6IKv

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u80AF';
console.log(char);  // Output: 肯

Java:

char c = '\u80AF';
System.out.println(c);  // Output: 肯

JSON:

{"text": "\u80AF"}  // Value: 肯

Python:

char = '\u80AF'
print(char)  # Output: 肯

Perl:

my $char = "\x{80AF}";
print $char;  # Output: 肯

PHP:

$char = "\x{80AF}";
echo $char;  // Output: 肯

Ruby:

char = "\u{80AF}"
puts char  # Output: 肯

Rust:

let c = '\u{80AF}';
println!("{}", c);  // Output: 肯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0080AF";  /* Display: 肯 */
}

HTML Decimal:

<p>HTML decimal: &#32943;</p>  <!-- Display: 肯 -->

HTML Hexadecimal:

<p>HTML hex: &#x80AF;</p>  <!-- Display: 肯 -->

URL Encoding:

// 肯 URL encoding
https://unicodefinder.com/search.php?query=%E8%82%AF

Encodings

MD5:

aca1f8d9af91579afc5d6b823f7db7d5

SHA1:

cd31fc53d564b265044351dc8eb5b082b0eab03a

Base64:

6IKv