C:
char c = '\u1809';
printf("%c\n", c); // Output: ᠉
JavaScript:
const char = '\u1809';
console.log(char); // Output: ᠉
Java:
char c = '\u1809';
System.out.println(c); // Output: ᠉
JSON:
{"text": "\u1809"} // Value: ᠉
Python:
char = '\u1809'
print(char) # Output: ᠉
Perl:
my $char = "\x{1809}";
print $char; # Output: ᠉
PHP:
$char = "\x{1809}";
echo $char; // Output: ᠉
Ruby:
char = "\u{1809}"
puts char # Output: ᠉
Rust:
let c = '\u{1809}';
println!("{}", c); // Output: ᠉
Go:
char := '\u1809'
fmt.Printf("%c\n", char) // Output: ᠉
CSS:
/* CSS content property */
.element::before {
content: "\001809"; /* 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%89
MD5:
e5cb9f1007fa3279bbdc3350b3e45beb
SHA1:
f8c0c472487c1e1e48f765aca7986e85a905f49f
Base64:
4aCJ