C:
char c = '\u60AF';
printf("%c\n", c); // Output: 悯
JavaScript:
const char = '\u60AF';
console.log(char); // Output: 悯
Java:
char c = '\u60AF';
System.out.println(c); // Output: 悯
JSON:
{"text": "\u60AF"} // Value: 悯
Python:
char = '\u60AF'
print(char) # Output: 悯
Perl:
my $char = "\x{60AF}";
print $char; # Output: 悯
PHP:
$char = "\x{60AF}";
echo $char; // Output: 悯
Ruby:
char = "\u{60AF}"
puts char # Output: 悯
Rust:
let c = '\u{60AF}';
println!("{}", c); // Output: 悯
Go:
char := '\u60AF'
fmt.Printf("%c\n", char) // Output: 悯
CSS:
/* CSS content property */
.element::before {
content: "\0060AF"; /* 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=%E6%82%AF
MD5:
23ef18172f14c6266f403e1b52b606c3
SHA1:
f87c919e4844681bef202cb72b934b9ed27b114b
Base64:
5oKv