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