C:
char c = '\u151F';
printf("%c\n", c); // Output: ᔟ
JavaScript:
const char = '\u151F';
console.log(char); // Output: ᔟ
Java:
char c = '\u151F';
System.out.println(c); // Output: ᔟ
JSON:
{"text": "\u151F"} // Value: ᔟ
Python:
char = '\u151F'
print(char) # Output: ᔟ
Perl:
my $char = "\x{151F}";
print $char; # Output: ᔟ
PHP:
$char = "\x{151F}";
echo $char; // Output: ᔟ
Ruby:
char = "\u{151F}"
puts char # Output: ᔟ
Rust:
let c = '\u{151F}';
println!("{}", c); // Output: ᔟ
Go:
char := '\u151F'
fmt.Printf("%c\n", char) // Output: ᔟ
CSS:
/* CSS content property */
.element::before {
content: "\00151F"; /* 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%9F
MD5:
668f6233c7621828a3bcf43ec6b771b2
SHA1:
5adfd68b995dda473f2770ad435a49c1eb9b4741
Base64:
4ZSf