C:
char c = '\u013B';
printf("%c\n", c); // Output: Ļ
JavaScript:
const char = '\u013B';
console.log(char); // Output: Ļ
Java:
char c = '\u013B';
System.out.println(c); // Output: Ļ
JSON:
{"text": "\u013B"} // Value: Ļ
Python:
char = '\u013B'
print(char) # Output: Ļ
Perl:
my $char = "\x{013B}";
print $char; # Output: Ļ
PHP:
$char = "\x{013B}";
echo $char; // Output: Ļ
Ruby:
char = "\u{013B}"
puts char # Output: Ļ
Rust:
let c = '\u{13B}';
println!("{}", c); // Output: Ļ
Go:
char := '\u013B'
fmt.Printf("%c\n", char) // Output: Ļ
CSS:
/* CSS content property */
.element::before {
content: "\00013B"; /* 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=%C4%BB
MD5:
9f65feed7e2298a70087416760aeb816
SHA1:
2e6467583afa7d01b819575c0a34576bef279a1b
Base64:
xLs=