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