C:
char c = '\u0A42';
printf("%c\n", c); // Output: ੂ
JavaScript:
const char = '\u0A42';
console.log(char); // Output: ੂ
Java:
char c = '\u0A42';
System.out.println(c); // Output: ੂ
JSON:
{"text": "\u0A42"} // Value: ੂ
Python:
char = '\u0A42'
print(char) # Output: ੂ
Perl:
my $char = "\x{0A42}";
print $char; # Output: ੂ
PHP:
$char = "\x{0A42}";
echo $char; // Output: ੂ
Ruby:
char = "\u{0A42}"
puts char # Output: ੂ
Rust:
let c = '\u{A42}';
println!("{}", c); // Output: ੂ
Go:
char := '\u0A42'
fmt.Printf("%c\n", char) // Output: ੂ
CSS:
/* CSS content property */
.element::before {
content: "\000A42"; /* 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=%E0%A9%82
MD5:
d2932c281d1824f25fa6620c09933ab1
SHA1:
448ac8213647065f550f8cd006a60386151f48c1
Base64:
4KmC