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