C:
char c = '\u6F20';
printf("%c\n", c); // Output: 漠
JavaScript:
const char = '\u6F20';
console.log(char); // Output: 漠
Java:
char c = '\u6F20';
System.out.println(c); // Output: 漠
JSON:
{"text": "\u6F20"} // Value: 漠
Python:
char = '\u6F20'
print(char) # Output: 漠
Perl:
my $char = "\x{6F20}";
print $char; # Output: 漠
PHP:
$char = "\x{6F20}";
echo $char; // Output: 漠
Ruby:
char = "\u{6F20}"
puts char # Output: 漠
Rust:
let c = '\u{6F20}';
println!("{}", c); // Output: 漠
Go:
char := '\u6F20'
fmt.Printf("%c\n", char) // Output: 漠
CSS:
/* CSS content property */
.element::before {
content: "\006F20"; /* 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%BC%A0
MD5:
7ee62fca7ede4af5d67813dc1ca141ac
SHA1:
95fc00b3d6c0f9ef25c400d610abf6677441e99b
Base64:
5ryg