C:
char c = '\u7344';
printf("%c\n", c); // Output: 獄
JavaScript:
const char = '\u7344';
console.log(char); // Output: 獄
Java:
char c = '\u7344';
System.out.println(c); // Output: 獄
JSON:
{"text": "\u7344"} // Value: 獄
Python:
char = '\u7344'
print(char) # Output: 獄
Perl:
my $char = "\x{7344}";
print $char; # Output: 獄
PHP:
$char = "\x{7344}";
echo $char; // Output: 獄
Ruby:
char = "\u{7344}"
puts char # Output: 獄
Rust:
let c = '\u{7344}';
println!("{}", c); // Output: 獄
Go:
char := '\u7344'
fmt.Printf("%c\n", char) // Output: 獄
CSS:
/* CSS content property */
.element::before {
content: "\007344"; /* 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%8D%84
MD5:
4599e2dd702cec00402a60a02642dcd1
SHA1:
85f0fa4d213c236a086a08889748ca5d6f19b849
Base64:
542E