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