C:
char c = '\u1518';
printf("%c\n", c); // Output: ᔘ
JavaScript:
const char = '\u1518';
console.log(char); // Output: ᔘ
Java:
char c = '\u1518';
System.out.println(c); // Output: ᔘ
JSON:
{"text": "\u1518"} // Value: ᔘ
Python:
char = '\u1518'
print(char) # Output: ᔘ
Perl:
my $char = "\x{1518}";
print $char; # Output: ᔘ
PHP:
$char = "\x{1518}";
echo $char; // Output: ᔘ
Ruby:
char = "\u{1518}"
puts char # Output: ᔘ
Rust:
let c = '\u{1518}';
println!("{}", c); // Output: ᔘ
Go:
char := '\u1518'
fmt.Printf("%c\n", char) // Output: ᔘ
CSS:
/* CSS content property */
.element::before {
content: "\001518"; /* 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%94%98
MD5:
8fcef20ead0bde97644231b7b4952f1e
SHA1:
40e7b793a93adfc41a52c7fd894205945bd4f224
Base64:
4ZSY