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