C:
char c = '\u1B0F';
printf("%c\n", c); // Output: ᬏ
JavaScript:
const char = '\u1B0F';
console.log(char); // Output: ᬏ
Java:
char c = '\u1B0F';
System.out.println(c); // Output: ᬏ
JSON:
{"text": "\u1B0F"} // Value: ᬏ
Python:
char = '\u1B0F'
print(char) # Output: ᬏ
Perl:
my $char = "\x{1B0F}";
print $char; # Output: ᬏ
PHP:
$char = "\x{1B0F}";
echo $char; // Output: ᬏ
Ruby:
char = "\u{1B0F}"
puts char # Output: ᬏ
Rust:
let c = '\u{1B0F}';
println!("{}", c); // Output: ᬏ
Go:
char := '\u1B0F'
fmt.Printf("%c\n", char) // Output: ᬏ
CSS:
/* CSS content property */
.element::before {
content: "\001B0F"; /* 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%AC%8F
MD5:
3487c176701359b9b61200a90aace72b
SHA1:
b10de6ee5fa386df62de0137b2efb06244d91c49
Base64:
4ayP