C:
char c = '\u1185';
printf("%c\n", c); // Output: ᆅ
JavaScript:
const char = '\u1185';
console.log(char); // Output: ᆅ
Java:
char c = '\u1185';
System.out.println(c); // Output: ᆅ
JSON:
{"text": "\u1185"} // Value: ᆅ
Python:
char = '\u1185'
print(char) # Output: ᆅ
Perl:
my $char = "\x{1185}";
print $char; # Output: ᆅ
PHP:
$char = "\x{1185}";
echo $char; // Output: ᆅ
Ruby:
char = "\u{1185}"
puts char # Output: ᆅ
Rust:
let c = '\u{1185}';
println!("{}", c); // Output: ᆅ
Go:
char := '\u1185'
fmt.Printf("%c\n", char) // Output: ᆅ
CSS:
/* CSS content property */
.element::before {
content: "\001185"; /* 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%86%85
MD5:
697d434d08e0b43d6e3e23dc7c67191d
SHA1:
7eb18c511abe027a931ffe23ffa61f01c703592c
Base64:
4YaF