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