C:
char c = '\u0830';
printf("%c\n", c); // Output: ࠰
JavaScript:
const char = '\u0830';
console.log(char); // Output: ࠰
Java:
char c = '\u0830';
System.out.println(c); // Output: ࠰
JSON:
{"text": "\u0830"} // Value: ࠰
Python:
char = '\u0830'
print(char) # Output: ࠰
Perl:
my $char = "\x{0830}";
print $char; # Output: ࠰
PHP:
$char = "\x{0830}";
echo $char; // Output: ࠰
Ruby:
char = "\u{0830}"
puts char # Output: ࠰
Rust:
let c = '\u{830}';
println!("{}", c); // Output: ࠰
Go:
char := '\u0830'
fmt.Printf("%c\n", char) // Output: ࠰
CSS:
/* CSS content property */
.element::before {
content: "\000830"; /* 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%B0
MD5:
6aac9b8ce98a13b4d29dc03540df1d50
SHA1:
463e780e74db7bb04ad22a5e271608ecd289d62c
Base64:
4KCw