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