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