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