C:
char c = '\uAB24';
printf("%c\n", c); // Output: ꬤ
JavaScript:
const char = '\uAB24';
console.log(char); // Output: ꬤ
Java:
char c = '\uAB24';
System.out.println(c); // Output: ꬤ
JSON:
{"text": "\uAB24"} // Value: ꬤ
Python:
char = '\uAB24'
print(char) # Output: ꬤ
Perl:
my $char = "\x{AB24}";
print $char; # Output: ꬤ
PHP:
$char = "\x{AB24}";
echo $char; // Output: ꬤ
Ruby:
char = "\u{AB24}"
puts char # Output: ꬤ
Rust:
let c = '\u{AB24}';
println!("{}", c); // Output: ꬤ
Go:
char := '\uAB24'
fmt.Printf("%c\n", char) // Output: ꬤ
CSS:
/* CSS content property */
.element::before {
content: "\00AB24"; /* 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%A4
MD5:
c36ed879078428e4c2de998faaecc824
SHA1:
eacbd667e4acf7aabfeb19028c2a893fb64e64a9
Base64:
6qyk