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