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