C:
char c = '\u1083';
printf("%c\n", c); // Output: ႃ
JavaScript:
const char = '\u1083';
console.log(char); // Output: ႃ
Java:
char c = '\u1083';
System.out.println(c); // Output: ႃ
JSON:
{"text": "\u1083"} // Value: ႃ
Python:
char = '\u1083'
print(char) # Output: ႃ
Perl:
my $char = "\x{1083}";
print $char; # Output: ႃ
PHP:
$char = "\x{1083}";
echo $char; // Output: ႃ
Ruby:
char = "\u{1083}"
puts char # Output: ႃ
Rust:
let c = '\u{1083}';
println!("{}", c); // Output: ႃ
Go:
char := '\u1083'
fmt.Printf("%c\n", char) // Output: ႃ
CSS:
/* CSS content property */
.element::before {
content: "\001083"; /* 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=%E1%82%83
MD5:
0916845fad6018d06d34ee1608eafa52
SHA1:
fbcb7160d7ed1f6ee6c7c8c32a194e1a1995edfa
Base64:
4YKD