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