C:
char c = '\u109B';
printf("%c\n", c); // Output: ႛ
JavaScript:
const char = '\u109B';
console.log(char); // Output: ႛ
Java:
char c = '\u109B';
System.out.println(c); // Output: ႛ
JSON:
{"text": "\u109B"} // Value: ႛ
Python:
char = '\u109B'
print(char) # Output: ႛ
Perl:
my $char = "\x{109B}";
print $char; # Output: ႛ
PHP:
$char = "\x{109B}";
echo $char; // Output: ႛ
Ruby:
char = "\u{109B}"
puts char # Output: ႛ
Rust:
let c = '\u{109B}';
println!("{}", c); // Output: ႛ
Go:
char := '\u109B'
fmt.Printf("%c\n", char) // Output: ႛ
CSS:
/* CSS content property */
.element::before {
content: "\00109B"; /* 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%9B
MD5:
e933f06aca63538eb72d1ed6b6df499c
SHA1:
8e19f2a6e5961a1920deb068872c3cf9ba0329b0
Base64:
4YKb