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