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