C:
char c = '\u0139';
printf("%c\n", c); // Output: Ĺ
JavaScript:
const char = '\u0139';
console.log(char); // Output: Ĺ
Java:
char c = '\u0139';
System.out.println(c); // Output: Ĺ
JSON:
{"text": "\u0139"} // Value: Ĺ
Python:
char = '\u0139'
print(char) # Output: Ĺ
Perl:
my $char = "\x{0139}";
print $char; # Output: Ĺ
PHP:
$char = "\x{0139}";
echo $char; // Output: Ĺ
Ruby:
char = "\u{0139}"
puts char # Output: Ĺ
Rust:
let c = '\u{139}';
println!("{}", c); // Output: Ĺ
Go:
char := '\u0139'
fmt.Printf("%c\n", char) // Output: Ĺ
CSS:
/* CSS content property */
.element::before {
content: "\000139"; /* 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%B9
MD5:
342c5b39eee9dd2451c6ea15fa0eea4d
SHA1:
89629b7b76bfb52e568ef72534fd7cbc275f6732
Base64:
xLk=