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