C:
char c = '\u6066';
printf("%c\n", c); // Output: 恦
JavaScript:
const char = '\u6066';
console.log(char); // Output: 恦
Java:
char c = '\u6066';
System.out.println(c); // Output: 恦
JSON:
{"text": "\u6066"} // Value: 恦
Python:
char = '\u6066'
print(char) # Output: 恦
Perl:
my $char = "\x{6066}";
print $char; # Output: 恦
PHP:
$char = "\x{6066}";
echo $char; // Output: 恦
Ruby:
char = "\u{6066}"
puts char # Output: 恦
Rust:
let c = '\u{6066}';
println!("{}", c); // Output: 恦
Go:
char := '\u6066'
fmt.Printf("%c\n", char) // Output: 恦
CSS:
/* CSS content property */
.element::before {
content: "\006066"; /* 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%81%A6
MD5:
c0ad91c1d73a830491f0473eefbb4248
SHA1:
e9a4b18ba2f96d936db6fd720d22e63fc4621c10
Base64:
5oGm