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