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