C:
char c = '\u0828';
printf("%c\n", c); // Output: ࠨ
JavaScript:
const char = '\u0828';
console.log(char); // Output: ࠨ
Java:
char c = '\u0828';
System.out.println(c); // Output: ࠨ
JSON:
{"text": "\u0828"} // Value: ࠨ
Python:
char = '\u0828'
print(char) # Output: ࠨ
Perl:
my $char = "\x{0828}";
print $char; # Output: ࠨ
PHP:
$char = "\x{0828}";
echo $char; // Output: ࠨ
Ruby:
char = "\u{0828}"
puts char # Output: ࠨ
Rust:
let c = '\u{828}';
println!("{}", c); // Output: ࠨ
Go:
char := '\u0828'
fmt.Printf("%c\n", char) // Output: ࠨ
CSS:
/* CSS content property */
.element::before {
content: "\000828"; /* 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%A8
MD5:
6a6b4a3d4738031eb691cdf9ef6ae7c7
SHA1:
54736934a37cbdafc9bbc683382555485244223a
Base64:
4KCo