C:
char c = '\u6032';
printf("%c\n", c); // Output: 怲
JavaScript:
const char = '\u6032';
console.log(char); // Output: 怲
Java:
char c = '\u6032';
System.out.println(c); // Output: 怲
JSON:
{"text": "\u6032"} // Value: 怲
Python:
char = '\u6032'
print(char) # Output: 怲
Perl:
my $char = "\x{6032}";
print $char; # Output: 怲
PHP:
$char = "\x{6032}";
echo $char; // Output: 怲
Ruby:
char = "\u{6032}"
puts char # Output: 怲
Rust:
let c = '\u{6032}';
println!("{}", c); // Output: 怲
Go:
char := '\u6032'
fmt.Printf("%c\n", char) // Output: 怲
CSS:
/* CSS content property */
.element::before {
content: "\006032"; /* 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%B2
MD5:
49541077be3a85b29629dcefecf852bc
SHA1:
32c729dae4cab83b67eabec25d8b03cdb683a102
Base64:
5oCy