C:
char c = '\u0806';
printf("%c\n", c); // Output: ࠆ
JavaScript:
const char = '\u0806';
console.log(char); // Output: ࠆ
Java:
char c = '\u0806';
System.out.println(c); // Output: ࠆ
JSON:
{"text": "\u0806"} // Value: ࠆ
Python:
char = '\u0806'
print(char) # Output: ࠆ
Perl:
my $char = "\x{0806}";
print $char; # Output: ࠆ
PHP:
$char = "\x{0806}";
echo $char; // Output: ࠆ
Ruby:
char = "\u{0806}"
puts char # Output: ࠆ
Rust:
let c = '\u{806}';
println!("{}", c); // Output: ࠆ
Go:
char := '\u0806'
fmt.Printf("%c\n", char) // Output: ࠆ
CSS:
/* CSS content property */
.element::before {
content: "\000806"; /* 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%A0%86
MD5:
ebba02b91c094e4eec26e1ca488005e8
SHA1:
66ec6a2d80ae4d7a89a828581d2fa6d639dec5b8
Base64:
4KCG