C:
char c = '\u6DE6';
printf("%c\n", c); // Output: 淦
JavaScript:
const char = '\u6DE6';
console.log(char); // Output: 淦
Java:
char c = '\u6DE6';
System.out.println(c); // Output: 淦
JSON:
{"text": "\u6DE6"} // Value: 淦
Python:
char = '\u6DE6'
print(char) # Output: 淦
Perl:
my $char = "\x{6DE6}";
print $char; # Output: 淦
PHP:
$char = "\x{6DE6}";
echo $char; // Output: 淦
Ruby:
char = "\u{6DE6}"
puts char # Output: 淦
Rust:
let c = '\u{6DE6}';
println!("{}", c); // Output: 淦
Go:
char := '\u6DE6'
fmt.Printf("%c\n", char) // Output: 淦
CSS:
/* CSS content property */
.element::before {
content: "\006DE6"; /* 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%B7%A6
MD5:
c9400e1187e3da23a32eeeb1ea9d2f82
SHA1:
2b66e518d1e827ffbf91401fd1d2dba0d8149560
Base64:
5rem