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