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