C:
char c = '\u6018';
printf("%c\n", c); // Output: 怘
JavaScript:
const char = '\u6018';
console.log(char); // Output: 怘
Java:
char c = '\u6018';
System.out.println(c); // Output: 怘
JSON:
{"text": "\u6018"} // Value: 怘
Python:
char = '\u6018'
print(char) # Output: 怘
Perl:
my $char = "\x{6018}";
print $char; # Output: 怘
PHP:
$char = "\x{6018}";
echo $char; // Output: 怘
Ruby:
char = "\u{6018}"
puts char # Output: 怘
Rust:
let c = '\u{6018}';
println!("{}", c); // Output: 怘
Go:
char := '\u6018'
fmt.Printf("%c\n", char) // Output: 怘
CSS:
/* CSS content property */
.element::before {
content: "\006018"; /* 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%98
MD5:
6b06a4c6764bff26c5b020b9a3b46ba1
SHA1:
c5834d59e53b4f4518791485389fa5aaa417ebd1
Base64:
5oCY