C:
char c = '\u0130';
printf("%c\n", c); // Output: İ
JavaScript:
const char = '\u0130';
console.log(char); // Output: İ
Java:
char c = '\u0130';
System.out.println(c); // Output: İ
JSON:
{"text": "\u0130"} // Value: İ
Python:
char = '\u0130'
print(char) # Output: İ
Perl:
my $char = "\x{0130}";
print $char; # Output: İ
PHP:
$char = "\x{0130}";
echo $char; // Output: İ
Ruby:
char = "\u{0130}"
puts char # Output: İ
Rust:
let c = '\u{130}';
println!("{}", c); // Output: İ
Go:
char := '\u0130'
fmt.Printf("%c\n", char) // Output: İ
CSS:
/* CSS content property */
.element::before {
content: "\000130"; /* 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%B0
MD5:
1a313f370a5ba8fd5dad6f793d84ff21
SHA1:
9a0e5b94555df3dd524cf954b7cd098d04c0c5d2
Base64:
xLA=