C:
char c = '\u09AC';
printf("%c\n", c); // Output: ব
JavaScript:
const char = '\u09AC';
console.log(char); // Output: ব
Java:
char c = '\u09AC';
System.out.println(c); // Output: ব
JSON:
{"text": "\u09AC"} // Value: ব
Python:
char = '\u09AC'
print(char) # Output: ব
Perl:
my $char = "\x{09AC}";
print $char; # Output: ব
PHP:
$char = "\x{09AC}";
echo $char; // Output: ব
Ruby:
char = "\u{09AC}"
puts char # Output: ব
Rust:
let c = '\u{9AC}';
println!("{}", c); // Output: ব
Go:
char := '\u09AC'
fmt.Printf("%c\n", char) // Output: ব
CSS:
/* CSS content property */
.element::before {
content: "\0009AC"; /* 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%A6%AC
MD5:
d1b5395c0e1d0e398ef833d139528c39
SHA1:
b92dffd0bd209ba59bd9a1c71dfcf656d2791ddc
Base64:
4Kas