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