C:
char c = '\u082C';
printf("%c\n", c); // Output: ࠬ
JavaScript:
const char = '\u082C';
console.log(char); // Output: ࠬ
Java:
char c = '\u082C';
System.out.println(c); // Output: ࠬ
JSON:
{"text": "\u082C"} // Value: ࠬ
Python:
char = '\u082C'
print(char) # Output: ࠬ
Perl:
my $char = "\x{082C}";
print $char; # Output: ࠬ
PHP:
$char = "\x{082C}";
echo $char; // Output: ࠬ
Ruby:
char = "\u{082C}"
puts char # Output: ࠬ
Rust:
let c = '\u{82C}';
println!("{}", c); // Output: ࠬ
Go:
char := '\u082C'
fmt.Printf("%c\n", char) // Output: ࠬ
CSS:
/* CSS content property */
.element::before {
content: "\00082C"; /* 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%AC
MD5:
3b156d4c9bc2d2f86a053e853018e576
SHA1:
20df3366ca65b484624b484a4cf4961661c82089
Base64:
4KCs