C:
char c = '\uA124';
printf("%c\n", c); // Output: ꄤ
JavaScript:
const char = '\uA124';
console.log(char); // Output: ꄤ
Java:
char c = '\uA124';
System.out.println(c); // Output: ꄤ
JSON:
{"text": "\uA124"} // Value: ꄤ
Python:
char = '\uA124'
print(char) # Output: ꄤ
Perl:
my $char = "\x{A124}";
print $char; # Output: ꄤ
PHP:
$char = "\x{A124}";
echo $char; // Output: ꄤ
Ruby:
char = "\u{A124}"
puts char # Output: ꄤ
Rust:
let c = '\u{A124}';
println!("{}", c); // Output: ꄤ
Go:
char := '\uA124'
fmt.Printf("%c\n", char) // Output: ꄤ
CSS:
/* CSS content property */
.element::before {
content: "\00A124"; /* 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%84%A4
MD5:
918161d43be7592c998dc9f6d67aa55e
SHA1:
3e65a5bb9cdb1b17620d462ae72d2026565b73e3
Base64:
6oSk