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