C:
char c = '\u1859';
printf("%c\n", c); // Output: ᡙ
JavaScript:
const char = '\u1859';
console.log(char); // Output: ᡙ
Java:
char c = '\u1859';
System.out.println(c); // Output: ᡙ
JSON:
{"text": "\u1859"} // Value: ᡙ
Python:
char = '\u1859'
print(char) # Output: ᡙ
Perl:
my $char = "\x{1859}";
print $char; # Output: ᡙ
PHP:
$char = "\x{1859}";
echo $char; // Output: ᡙ
Ruby:
char = "\u{1859}"
puts char # Output: ᡙ
Rust:
let c = '\u{1859}';
println!("{}", c); // Output: ᡙ
Go:
char := '\u1859'
fmt.Printf("%c\n", char) // Output: ᡙ
CSS:
/* CSS content property */
.element::before {
content: "\001859"; /* 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%A1%99
MD5:
4691f06c6fdee9ef457607e5719abf4b
SHA1:
57e5f13d8cd419fa6fcac64c4ebc309469327618
Base64:
4aGZ