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