C:
char c = '\u7132';
printf("%c\n", c); // Output: 焲
JavaScript:
const char = '\u7132';
console.log(char); // Output: 焲
Java:
char c = '\u7132';
System.out.println(c); // Output: 焲
JSON:
{"text": "\u7132"} // Value: 焲
Python:
char = '\u7132'
print(char) # Output: 焲
Perl:
my $char = "\x{7132}";
print $char; # Output: 焲
PHP:
$char = "\x{7132}";
echo $char; // Output: 焲
Ruby:
char = "\u{7132}"
puts char # Output: 焲
Rust:
let c = '\u{7132}';
println!("{}", c); // Output: 焲
Go:
char := '\u7132'
fmt.Printf("%c\n", char) // Output: 焲
CSS:
/* CSS content property */
.element::before {
content: "\007132"; /* 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=%E7%84%B2
MD5:
06f8334f70f57abd3e0984b5e24293d8
SHA1:
0e335bde62e7b3b764b75ec3dd99e0eadd74e4ec
Base64:
54Sy