C:
char c = '\u154A';
printf("%c\n", c); // Output: ᕊ
JavaScript:
const char = '\u154A';
console.log(char); // Output: ᕊ
Java:
char c = '\u154A';
System.out.println(c); // Output: ᕊ
JSON:
{"text": "\u154A"} // Value: ᕊ
Python:
char = '\u154A'
print(char) # Output: ᕊ
Perl:
my $char = "\x{154A}";
print $char; # Output: ᕊ
PHP:
$char = "\x{154A}";
echo $char; // Output: ᕊ
Ruby:
char = "\u{154A}"
puts char # Output: ᕊ
Rust:
let c = '\u{154A}';
println!("{}", c); // Output: ᕊ
Go:
char := '\u154A'
fmt.Printf("%c\n", char) // Output: ᕊ
CSS:
/* CSS content property */
.element::before {
content: "\00154A"; /* 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%95%8A
MD5:
41c89b1e44cb0d675d4f9c5af7f67a0d
SHA1:
187e031837f57497348f0a26de6e09b050898041
Base64:
4ZWK