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