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