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: 肯
CSS:
/* CSS content property */
.element::before {
content: "\0080AF"; /* Display: 肯 */
}
HTML Decimal:
<p>HTML decimal: 肯</p> <!-- Display: 肯 -->
HTML Hexadecimal:
<p>HTML hex: 肯</p> <!-- Display: 肯 -->
URL Encoding:
// 肯 URL encoding
https://unicodefinder.com/search.php?query=%E8%82%AF
MD5:
aca1f8d9af91579afc5d6b823f7db7d5
SHA1:
cd31fc53d564b265044351dc8eb5b082b0eab03a
Base64:
6IKv