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