C:
char c = '\u1542';
printf("%c\n", c); // Output: ᕂ
JavaScript:
const char = '\u1542';
console.log(char); // Output: ᕂ
Java:
char c = '\u1542';
System.out.println(c); // Output: ᕂ
JSON:
{"text": "\u1542"} // Value: ᕂ
Python:
char = '\u1542'
print(char) # Output: ᕂ
Perl:
my $char = "\x{1542}";
print $char; # Output: ᕂ
PHP:
$char = "\x{1542}";
echo $char; // Output: ᕂ
Ruby:
char = "\u{1542}"
puts char # Output: ᕂ
Rust:
let c = '\u{1542}';
println!("{}", c); // Output: ᕂ
Go:
char := '\u1542'
fmt.Printf("%c\n", char) // Output: ᕂ
CSS:
/* CSS content property */
.element::before {
content: "\001542"; /* 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%82
MD5:
7ae51d46867d24429d8a3e8712f948a7
SHA1:
1d80208fcee6653624101adc3df54ee5721557f3
Base64:
4ZWC