C:
char c = '\u1571';
printf("%c\n", c); // Output: ᕱ
JavaScript:
const char = '\u1571';
console.log(char); // Output: ᕱ
Java:
char c = '\u1571';
System.out.println(c); // Output: ᕱ
JSON:
{"text": "\u1571"} // Value: ᕱ
Python:
char = '\u1571'
print(char) # Output: ᕱ
Perl:
my $char = "\x{1571}";
print $char; # Output: ᕱ
PHP:
$char = "\x{1571}";
echo $char; // Output: ᕱ
Ruby:
char = "\u{1571}"
puts char # Output: ᕱ
Rust:
let c = '\u{1571}';
println!("{}", c); // Output: ᕱ
Go:
char := '\u1571'
fmt.Printf("%c\n", char) // Output: ᕱ
CSS:
/* CSS content property */
.element::before {
content: "\001571"; /* 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%B1
MD5:
99d75a4fe132ff328bbae7b3161c8118
SHA1:
28d6f7ef5fbad5750aa31c099cca1d79d072cc62
Base64:
4ZWx