C:
char c = '\u0A47';
printf("%c\n", c); // Output: ੇ
JavaScript:
const char = '\u0A47';
console.log(char); // Output: ੇ
Java:
char c = '\u0A47';
System.out.println(c); // Output: ੇ
JSON:
{"text": "\u0A47"} // Value: ੇ
Python:
char = '\u0A47'
print(char) # Output: ੇ
Perl:
my $char = "\x{0A47}";
print $char; # Output: ੇ
PHP:
$char = "\x{0A47}";
echo $char; // Output: ੇ
Ruby:
char = "\u{0A47}"
puts char # Output: ੇ
Rust:
let c = '\u{A47}';
println!("{}", c); // Output: ੇ
Go:
char := '\u0A47'
fmt.Printf("%c\n", char) // Output: ੇ
CSS:
/* CSS content property */
.element::before {
content: "\000A47"; /* 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%87
MD5:
bc6107d313d047ebd803cab28659bd0e
SHA1:
56f7cef4961df54c09657dfc24a1ae8063475d23
Base64:
4KmH