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