C:
char c = '\u6012';
printf("%c\n", c); // Output: 怒
JavaScript:
const char = '\u6012';
console.log(char); // Output: 怒
Java:
char c = '\u6012';
System.out.println(c); // Output: 怒
JSON:
{"text": "\u6012"} // Value: 怒
Python:
char = '\u6012'
print(char) # Output: 怒
Perl:
my $char = "\x{6012}";
print $char; # Output: 怒
PHP:
$char = "\x{6012}";
echo $char; // Output: 怒
Ruby:
char = "\u{6012}"
puts char # Output: 怒
Rust:
let c = '\u{6012}';
println!("{}", c); // Output: 怒
Go:
char := '\u6012'
fmt.Printf("%c\n", char) // Output: 怒
CSS:
/* CSS content property */
.element::before {
content: "\006012"; /* 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%80%92
MD5:
8a95a68143e6ed6eb22486e07e3bd34d
SHA1:
88468ea430b08b5da09e9ca0f3d5ed9b27733412
Base64:
5oCS