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