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