C:
char c = '\u09C3';
printf("%c\n", c); // Output: ৃ
JavaScript:
const char = '\u09C3';
console.log(char); // Output: ৃ
Java:
char c = '\u09C3';
System.out.println(c); // Output: ৃ
JSON:
{"text": "\u09C3"} // Value: ৃ
Python:
char = '\u09C3'
print(char) # Output: ৃ
Perl:
my $char = "\x{09C3}";
print $char; # Output: ৃ
PHP:
$char = "\x{09C3}";
echo $char; // Output: ৃ
Ruby:
char = "\u{09C3}"
puts char # Output: ৃ
Rust:
let c = '\u{9C3}';
println!("{}", c); // Output: ৃ
Go:
char := '\u09C3'
fmt.Printf("%c\n", char) // Output: ৃ
CSS:
/* CSS content property */
.element::before {
content: "\0009C3"; /* 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%83
MD5:
c2f035b21ce17ef0c01b6dbf9218bd6a
SHA1:
259fe2dd3fa0298ea342b9bce59982b8afcdf93e
Base64:
4KeD