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