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