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