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