C:
char c = '\u1086';
printf("%c\n", c); // Output: ႆ
JavaScript:
const char = '\u1086';
console.log(char); // Output: ႆ
Java:
char c = '\u1086';
System.out.println(c); // Output: ႆ
JSON:
{"text": "\u1086"} // Value: ႆ
Python:
char = '\u1086'
print(char) # Output: ႆ
Perl:
my $char = "\x{1086}";
print $char; # Output: ႆ
PHP:
$char = "\x{1086}";
echo $char; // Output: ႆ
Ruby:
char = "\u{1086}"
puts char # Output: ႆ
Rust:
let c = '\u{1086}';
println!("{}", c); // Output: ႆ
Go:
char := '\u1086'
fmt.Printf("%c\n", char) // Output: ႆ
CSS:
/* CSS content property */
.element::before {
content: "\001086"; /* 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%86
MD5:
23c7c784e765faf5fe07960510168277
SHA1:
30b3a93857a5bfc9da63f0b8d39e33a4618ce8cc
Base64:
4YKG