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