C:
char c = '\u16B2';
printf("%c\n", c); // Output: ᚲ
JavaScript:
const char = '\u16B2';
console.log(char); // Output: ᚲ
Java:
char c = '\u16B2';
System.out.println(c); // Output: ᚲ
JSON:
{"text": "\u16B2"} // Value: ᚲ
Python:
char = '\u16B2'
print(char) # Output: ᚲ
Perl:
my $char = "\x{16B2}";
print $char; # Output: ᚲ
PHP:
$char = "\x{16B2}";
echo $char; // Output: ᚲ
Ruby:
char = "\u{16B2}"
puts char # Output: ᚲ
Rust:
let c = '\u{16B2}';
println!("{}", c); // Output: ᚲ
Go:
char := '\u16B2'
fmt.Printf("%c\n", char) // Output: ᚲ
CSS:
/* CSS content property */
.element::before {
content: "\0016B2"; /* 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%B2
MD5:
c69d069ea550dc4494877a97355c672b
SHA1:
68181f6e87ded049aae6ef6f48c5b18793a490e0
Base64:
4Zqy