C:
char c = '\u6D88';
printf("%c\n", c); // Output: 消
JavaScript:
const char = '\u6D88';
console.log(char); // Output: 消
Java:
char c = '\u6D88';
System.out.println(c); // Output: 消
JSON:
{"text": "\u6D88"} // Value: 消
Python:
char = '\u6D88'
print(char) # Output: 消
Perl:
my $char = "\x{6D88}";
print $char; # Output: 消
PHP:
$char = "\x{6D88}";
echo $char; // Output: 消
Ruby:
char = "\u{6D88}"
puts char # Output: 消
Rust:
let c = '\u{6D88}';
println!("{}", c); // Output: 消
Go:
char := '\u6D88'
fmt.Printf("%c\n", char) // Output: 消
CSS:
/* CSS content property */
.element::before {
content: "\006D88"; /* 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%B6%88
MD5:
aa4d946d0650b0e18640fd87b19c6842
SHA1:
06f94b7c9ee9ddcefb24859005d4db530ab5a484
Base64:
5raI