C:
char c = '\u169A';
printf("%c\n", c); // Output: ᚚ
JavaScript:
const char = '\u169A';
console.log(char); // Output: ᚚ
Java:
char c = '\u169A';
System.out.println(c); // Output: ᚚ
JSON:
{"text": "\u169A"} // Value: ᚚ
Python:
char = '\u169A'
print(char) # Output: ᚚ
Perl:
my $char = "\x{169A}";
print $char; # Output: ᚚ
PHP:
$char = "\x{169A}";
echo $char; // Output: ᚚ
Ruby:
char = "\u{169A}"
puts char # Output: ᚚ
Rust:
let c = '\u{169A}';
println!("{}", c); // Output: ᚚ
Go:
char := '\u169A'
fmt.Printf("%c\n", char) // Output: ᚚ
CSS:
/* CSS content property */
.element::before {
content: "\00169A"; /* 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%9A%9A
MD5:
270e32cbb08a19083dc11f2f3e1ddea5
SHA1:
875faccebbb92e23d6a40478e37cd4ee1b6313b7
Base64:
4Zqa