C:
char c = '\u0131';
printf("%c\n", c); // Output: ı
JavaScript:
const char = '\u0131';
console.log(char); // Output: ı
Java:
char c = '\u0131';
System.out.println(c); // Output: ı
JSON:
{"text": "\u0131"} // Value: ı
Python:
char = '\u0131'
print(char) # Output: ı
Perl:
my $char = "\x{0131}";
print $char; # Output: ı
PHP:
$char = "\x{0131}";
echo $char; // Output: ı
Ruby:
char = "\u{0131}"
puts char # Output: ı
Rust:
let c = '\u{131}';
println!("{}", c); // Output: ı
Go:
char := '\u0131'
fmt.Printf("%c\n", char) // Output: ı
CSS:
/* CSS content property */
.element::before {
content: "\000131"; /* 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%B1
MD5:
8ded568231f5e3b7f6e65ae73f6f9a81
SHA1:
d44c997953a510d72d50e873ff273de2f5e4cf77
Base64:
xLE=