C:
char c = '\u09CB';
printf("%c\n", c); // Output: ো
JavaScript:
const char = '\u09CB';
console.log(char); // Output: ো
Java:
char c = '\u09CB';
System.out.println(c); // Output: ো
JSON:
{"text": "\u09CB"} // Value: ো
Python:
char = '\u09CB'
print(char) # Output: ো
Perl:
my $char = "\x{09CB}";
print $char; # Output: ো
PHP:
$char = "\x{09CB}";
echo $char; // Output: ো
Ruby:
char = "\u{09CB}"
puts char # Output: ো
Rust:
let c = '\u{9CB}';
println!("{}", c); // Output: ো
Go:
char := '\u09CB'
fmt.Printf("%c\n", char) // Output: ো
CSS:
/* CSS content property */
.element::before {
content: "\0009CB"; /* 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%A7%8B
MD5:
916887dfda1dd6c26b4d09dc24b32c05
SHA1:
98b873115b453a0e12184fe53cc2153cdbf40605
Base64:
4KeL