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