C:
char c = '\uAB04';
printf("%c\n", c); // Output: ꬄ
JavaScript:
const char = '\uAB04';
console.log(char); // Output: ꬄ
Java:
char c = '\uAB04';
System.out.println(c); // Output: ꬄ
JSON:
{"text": "\uAB04"} // Value: ꬄ
Python:
char = '\uAB04'
print(char) # Output: ꬄ
Perl:
my $char = "\x{AB04}";
print $char; # Output: ꬄ
PHP:
$char = "\x{AB04}";
echo $char; // Output: ꬄ
Ruby:
char = "\u{AB04}"
puts char # Output: ꬄ
Rust:
let c = '\u{AB04}';
println!("{}", c); // Output: ꬄ
Go:
char := '\uAB04'
fmt.Printf("%c\n", char) // Output: ꬄ
CSS:
/* CSS content property */
.element::before {
content: "\00AB04"; /* 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=%EA%AC%84
MD5:
1ef6c24b09d8e75feb71e5a4eaf12f9d
SHA1:
0d1a0a64e5e8c9d5f6f94f4ed97ea26b1d20984f
Base64:
6qyE