C:
char c = '\u18A9';
printf("%c\n", c); // Output: ᢩ
JavaScript:
const char = '\u18A9';
console.log(char); // Output: ᢩ
Java:
char c = '\u18A9';
System.out.println(c); // Output: ᢩ
JSON:
{"text": "\u18A9"} // Value: ᢩ
Python:
char = '\u18A9'
print(char) # Output: ᢩ
Perl:
my $char = "\x{18A9}";
print $char; # Output: ᢩ
PHP:
$char = "\x{18A9}";
echo $char; // Output: ᢩ
Ruby:
char = "\u{18A9}"
puts char # Output: ᢩ
Rust:
let c = '\u{18A9}';
println!("{}", c); // Output: ᢩ
Go:
char := '\u18A9'
fmt.Printf("%c\n", char) // Output: ᢩ
CSS:
/* CSS content property */
.element::before {
content: "\0018A9"; /* 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%A2%A9
MD5:
14875e35a56d8917cb0b9aebbd467975
SHA1:
9318b97f337cd1c72c70653f1dae541c3c92301c
Base64:
4aKp