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