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