C:
char c = '\u1815';
printf("%c\n", c); // Output: ᠕
JavaScript:
const char = '\u1815';
console.log(char); // Output: ᠕
Java:
char c = '\u1815';
System.out.println(c); // Output: ᠕
JSON:
{"text": "\u1815"} // Value: ᠕
Python:
char = '\u1815'
print(char) # Output: ᠕
Perl:
my $char = "\x{1815}";
print $char; # Output: ᠕
PHP:
$char = "\x{1815}";
echo $char; // Output: ᠕
Ruby:
char = "\u{1815}"
puts char # Output: ᠕
Rust:
let c = '\u{1815}';
println!("{}", c); // Output: ᠕
Go:
char := '\u1815'
fmt.Printf("%c\n", char) // Output: ᠕
CSS:
/* CSS content property */
.element::before {
content: "\001815"; /* 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%95
MD5:
a3c33ada029c67b5d96d091523638675
SHA1:
2c8b80cb05be4d7b181d91194263a13ff3e134cc
Base64:
4aCV