C:
char c = '\u111B';
printf("%c\n", c); // Output: ᄛ
JavaScript:
const char = '\u111B';
console.log(char); // Output: ᄛ
Java:
char c = '\u111B';
System.out.println(c); // Output: ᄛ
JSON:
{"text": "\u111B"} // Value: ᄛ
Python:
char = '\u111B'
print(char) # Output: ᄛ
Perl:
my $char = "\x{111B}";
print $char; # Output: ᄛ
PHP:
$char = "\x{111B}";
echo $char; // Output: ᄛ
Ruby:
char = "\u{111B}"
puts char # Output: ᄛ
Rust:
let c = '\u{111B}';
println!("{}", c); // Output: ᄛ
Go:
char := '\u111B'
fmt.Printf("%c\n", char) // Output: ᄛ
CSS:
/* CSS content property */
.element::before {
content: "\00111B"; /* 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%84%9B
MD5:
ac6ef534a8de1b636568325f1677edee
SHA1:
8c8cde491f640c198b2bf9a70e9fd027a7279dcc
Base64:
4YSb