C:
char c = '\u1087';
printf("%c\n", c); // Output: ႇ
JavaScript:
const char = '\u1087';
console.log(char); // Output: ႇ
Java:
char c = '\u1087';
System.out.println(c); // Output: ႇ
JSON:
{"text": "\u1087"} // Value: ႇ
Python:
char = '\u1087'
print(char) # Output: ႇ
Perl:
my $char = "\x{1087}";
print $char; # Output: ႇ
PHP:
$char = "\x{1087}";
echo $char; // Output: ႇ
Ruby:
char = "\u{1087}"
puts char # Output: ႇ
Rust:
let c = '\u{1087}';
println!("{}", c); // Output: ႇ
Go:
char := '\u1087'
fmt.Printf("%c\n", char) // Output: ႇ
CSS:
/* CSS content property */
.element::before {
content: "\001087"; /* 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%87
MD5:
aff8f8ff5152c7a88b711fa4b4a73965
SHA1:
0b54e11044523fbdb6a8b95544ca1fbf93bfc02b
Base64:
4YKH