C:
char c = '\u150B';
printf("%c\n", c); // Output: ᔋ
JavaScript:
const char = '\u150B';
console.log(char); // Output: ᔋ
Java:
char c = '\u150B';
System.out.println(c); // Output: ᔋ
JSON:
{"text": "\u150B"} // Value: ᔋ
Python:
char = '\u150B'
print(char) # Output: ᔋ
Perl:
my $char = "\x{150B}";
print $char; # Output: ᔋ
PHP:
$char = "\x{150B}";
echo $char; // Output: ᔋ
Ruby:
char = "\u{150B}"
puts char # Output: ᔋ
Rust:
let c = '\u{150B}';
println!("{}", c); // Output: ᔋ
Go:
char := '\u150B'
fmt.Printf("%c\n", char) // Output: ᔋ
CSS:
/* CSS content property */
.element::before {
content: "\00150B"; /* 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%8B
MD5:
efa0553a49d8af5c29541eeeca84d0a3
SHA1:
1994e3bb0f18cccf8d6271a05b9f9d8dab316c68
Base64:
4ZSL