C:
char c = '\uA973';
printf("%c\n", c); // Output: ꥳ
JavaScript:
const char = '\uA973';
console.log(char); // Output: ꥳ
Java:
char c = '\uA973';
System.out.println(c); // Output: ꥳ
JSON:
{"text": "\uA973"} // Value: ꥳ
Python:
char = '\uA973'
print(char) # Output: ꥳ
Perl:
my $char = "\x{A973}";
print $char; # Output: ꥳ
PHP:
$char = "\x{A973}";
echo $char; // Output: ꥳ
Ruby:
char = "\u{A973}"
puts char # Output: ꥳ
Rust:
let c = '\u{A973}';
println!("{}", c); // Output: ꥳ
Go:
char := '\uA973'
fmt.Printf("%c\n", char) // Output: ꥳ
CSS:
/* CSS content property */
.element::before {
content: "\00A973"; /* 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%A5%B3
MD5:
44226489443083ad6c565a504f76b32e
SHA1:
9d8549d12a078f8615e3cfb41d12f7e5d8f521d1
Base64:
6qWz