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