C:
char c = '\uA2D7';
printf("%c\n", c); // Output: ꋗ
JavaScript:
const char = '\uA2D7';
console.log(char); // Output: ꋗ
Java:
char c = '\uA2D7';
System.out.println(c); // Output: ꋗ
JSON:
{"text": "\uA2D7"} // Value: ꋗ
Python:
char = '\uA2D7'
print(char) # Output: ꋗ
Perl:
my $char = "\x{A2D7}";
print $char; # Output: ꋗ
PHP:
$char = "\x{A2D7}";
echo $char; // Output: ꋗ
Ruby:
char = "\u{A2D7}"
puts char # Output: ꋗ
Rust:
let c = '\u{A2D7}';
println!("{}", c); // Output: ꋗ
Go:
char := '\uA2D7'
fmt.Printf("%c\n", char) // Output: ꋗ
CSS:
/* CSS content property */
.element::before {
content: "\00A2D7"; /* 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%97
MD5:
513099aeff8e04e4c08600ce72b9365a
SHA1:
6eb869436a3e6f38ab8598848917ec60aa081b5e
Base64:
6ouX