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