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