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