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