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