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