C:
char c = '\u70F2';
printf("%c\n", c); // Output: 烲
JavaScript:
const char = '\u70F2';
console.log(char); // Output: 烲
Java:
char c = '\u70F2';
System.out.println(c); // Output: 烲
JSON:
{"text": "\u70F2"} // Value: 烲
Python:
char = '\u70F2'
print(char) # Output: 烲
Perl:
my $char = "\x{70F2}";
print $char; # Output: 烲
PHP:
$char = "\x{70F2}";
echo $char; // Output: 烲
Ruby:
char = "\u{70F2}"
puts char # Output: 烲
Rust:
let c = '\u{70F2}';
println!("{}", c); // Output: 烲
Go:
char := '\u70F2'
fmt.Printf("%c\n", char) // Output: 烲
CSS:
/* CSS content property */
.element::before {
content: "\0070F2"; /* 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%83%B2
MD5:
5fd5aaac251799a8adb0a118877a3e69
SHA1:
84be22f176831c51e2b38ba1fff4376093604249
Base64:
54Oy