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