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