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