C:
char c = '\u1905';
printf("%c\n", c); // Output: ᤅ
JavaScript:
const char = '\u1905';
console.log(char); // Output: ᤅ
Java:
char c = '\u1905';
System.out.println(c); // Output: ᤅ
JSON:
{"text": "\u1905"} // Value: ᤅ
Python:
char = '\u1905'
print(char) # Output: ᤅ
Perl:
my $char = "\x{1905}";
print $char; # Output: ᤅ
PHP:
$char = "\x{1905}";
echo $char; // Output: ᤅ
Ruby:
char = "\u{1905}"
puts char # Output: ᤅ
Rust:
let c = '\u{1905}';
println!("{}", c); // Output: ᤅ
Go:
char := '\u1905'
fmt.Printf("%c\n", char) // Output: ᤅ
CSS:
/* CSS content property */
.element::before {
content: "\001905"; /* 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%A4%85
MD5:
37607eceb2aec7494fdaf937e7ab15bc
SHA1:
c28130a608769c4e46e3bf2a7a505553fff3ecdd
Base64:
4aSF