C:
char c = '\u1523';
printf("%c\n", c); // Output: ᔣ
JavaScript:
const char = '\u1523';
console.log(char); // Output: ᔣ
Java:
char c = '\u1523';
System.out.println(c); // Output: ᔣ
JSON:
{"text": "\u1523"} // Value: ᔣ
Python:
char = '\u1523'
print(char) # Output: ᔣ
Perl:
my $char = "\x{1523}";
print $char; # Output: ᔣ
PHP:
$char = "\x{1523}";
echo $char; // Output: ᔣ
Ruby:
char = "\u{1523}"
puts char # Output: ᔣ
Rust:
let c = '\u{1523}';
println!("{}", c); // Output: ᔣ
Go:
char := '\u1523'
fmt.Printf("%c\n", char) // Output: ᔣ
CSS:
/* CSS content property */
.element::before {
content: "\001523"; /* 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%94%A3
MD5:
eaf0a7fb60dc5c285a9d649766c871a3
SHA1:
08759920ced34057850c5a17b76a2dbb12c2c594
Base64:
4ZSj