C:
char c = '\u6115';
printf("%c\n", c); // Output: 愕
JavaScript:
const char = '\u6115';
console.log(char); // Output: 愕
Java:
char c = '\u6115';
System.out.println(c); // Output: 愕
JSON:
{"text": "\u6115"} // Value: 愕
Python:
char = '\u6115'
print(char) # Output: 愕
Perl:
my $char = "\x{6115}";
print $char; # Output: 愕
PHP:
$char = "\x{6115}";
echo $char; // Output: 愕
Ruby:
char = "\u{6115}"
puts char # Output: 愕
Rust:
let c = '\u{6115}';
println!("{}", c); // Output: 愕
Go:
char := '\u6115'
fmt.Printf("%c\n", char) // Output: 愕
CSS:
/* CSS content property */
.element::before {
content: "\006115"; /* 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%84%95
MD5:
a468b693679e45ed55e712e81ca20a35
SHA1:
232754f6dca6b956e7f2830c751684e4b6653526
Base64:
5oSV