C:
char c = '\u1043';
printf("%c\n", c); // Output: ၃
JavaScript:
const char = '\u1043';
console.log(char); // Output: ၃
Java:
char c = '\u1043';
System.out.println(c); // Output: ၃
JSON:
{"text": "\u1043"} // Value: ၃
Python:
char = '\u1043'
print(char) # Output: ၃
Perl:
my $char = "\x{1043}";
print $char; # Output: ၃
PHP:
$char = "\x{1043}";
echo $char; // Output: ၃
Ruby:
char = "\u{1043}"
puts char # Output: ၃
Rust:
let c = '\u{1043}';
println!("{}", c); // Output: ၃
Go:
char := '\u1043'
fmt.Printf("%c\n", char) // Output: ၃
CSS:
/* CSS content property */
.element::before {
content: "\001043"; /* 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=%E1%81%83
MD5:
8a75e1d89f223db0f4d32d8765695714
SHA1:
facaba7af00e9f28fc0361efd685c8b000eff776
Base64:
4YGD