C:
char c = '\u0F72';
printf("%c\n", c); // Output: ི
JavaScript:
const char = '\u0F72';
console.log(char); // Output: ི
Java:
char c = '\u0F72';
System.out.println(c); // Output: ི
JSON:
{"text": "\u0F72"} // Value: ི
Python:
char = '\u0F72'
print(char) # Output: ི
Perl:
my $char = "\x{0F72}";
print $char; # Output: ི
PHP:
$char = "\x{0F72}";
echo $char; // Output: ི
Ruby:
char = "\u{0F72}"
puts char # Output: ི
Rust:
let c = '\u{F72}';
println!("{}", c); // Output: ི
Go:
char := '\u0F72'
fmt.Printf("%c\n", char) // Output: ི
CSS:
/* CSS content property */
.element::before {
content: "\000F72"; /* 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=%E0%BD%B2
MD5:
cb05956189a150a5579b836d81d5249a
SHA1:
58d8011ad9d61c86aa7543b0debc41f7988da441
Base64:
4L2y