C:
char c = '\u1543';
printf("%c\n", c); // Output: ᕃ
JavaScript:
const char = '\u1543';
console.log(char); // Output: ᕃ
Java:
char c = '\u1543';
System.out.println(c); // Output: ᕃ
JSON:
{"text": "\u1543"} // Value: ᕃ
Python:
char = '\u1543'
print(char) # Output: ᕃ
Perl:
my $char = "\x{1543}";
print $char; # Output: ᕃ
PHP:
$char = "\x{1543}";
echo $char; // Output: ᕃ
Ruby:
char = "\u{1543}"
puts char # Output: ᕃ
Rust:
let c = '\u{1543}';
println!("{}", c); // Output: ᕃ
Go:
char := '\u1543'
fmt.Printf("%c\n", char) // Output: ᕃ
CSS:
/* CSS content property */
.element::before {
content: "\001543"; /* 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%83
MD5:
3d7ffee5df47822f05caa0e9d9fc288c
SHA1:
bdd1be540b934c785c0f0b7490e964087cd7c289
Base64:
4ZWD