C:
char c = '\u152A';
printf("%c\n", c); // Output: ᔪ
JavaScript:
const char = '\u152A';
console.log(char); // Output: ᔪ
Java:
char c = '\u152A';
System.out.println(c); // Output: ᔪ
JSON:
{"text": "\u152A"} // Value: ᔪ
Python:
char = '\u152A'
print(char) # Output: ᔪ
Perl:
my $char = "\x{152A}";
print $char; # Output: ᔪ
PHP:
$char = "\x{152A}";
echo $char; // Output: ᔪ
Ruby:
char = "\u{152A}"
puts char # Output: ᔪ
Rust:
let c = '\u{152A}';
println!("{}", c); // Output: ᔪ
Go:
char := '\u152A'
fmt.Printf("%c\n", char) // Output: ᔪ
CSS:
/* CSS content property */
.element::before {
content: "\00152A"; /* 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%AA
MD5:
652a61bc510eee29e4e5b351b217d42f
SHA1:
b28c457150b6c810631c2151717aec9a59ea185f
Base64:
4ZSq