C:
char c = '\u1818';
printf("%c\n", c); // Output: ᠘
JavaScript:
const char = '\u1818';
console.log(char); // Output: ᠘
Java:
char c = '\u1818';
System.out.println(c); // Output: ᠘
JSON:
{"text": "\u1818"} // Value: ᠘
Python:
char = '\u1818'
print(char) # Output: ᠘
Perl:
my $char = "\x{1818}";
print $char; # Output: ᠘
PHP:
$char = "\x{1818}";
echo $char; // Output: ᠘
Ruby:
char = "\u{1818}"
puts char # Output: ᠘
Rust:
let c = '\u{1818}';
println!("{}", c); // Output: ᠘
Go:
char := '\u1818'
fmt.Printf("%c\n", char) // Output: ᠘
CSS:
/* CSS content property */
.element::before {
content: "\001818"; /* 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%98
MD5:
4590905ed5ef45deeefe960d25061c14
SHA1:
b4e396e001ac88277046acb6fbeb9fc4c00757f2
Base64:
4aCY