C:
char c = '\u11DB';
printf("%c\n", c); // Output: ᇛ
JavaScript:
const char = '\u11DB';
console.log(char); // Output: ᇛ
Java:
char c = '\u11DB';
System.out.println(c); // Output: ᇛ
JSON:
{"text": "\u11DB"} // Value: ᇛ
Python:
char = '\u11DB'
print(char) # Output: ᇛ
Perl:
my $char = "\x{11DB}";
print $char; # Output: ᇛ
PHP:
$char = "\x{11DB}";
echo $char; // Output: ᇛ
Ruby:
char = "\u{11DB}"
puts char # Output: ᇛ
Rust:
let c = '\u{11DB}';
println!("{}", c); // Output: ᇛ
Go:
char := '\u11DB'
fmt.Printf("%c\n", char) // Output: ᇛ
CSS:
/* CSS content property */
.element::before {
content: "\0011DB"; /* 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%87%9B
MD5:
236bdd8d845c43968d8ea654f7e67b0f
SHA1:
f2a9f082606c75e53960ffb9478ae1c83a0cf52a
Base64:
4Yeb