C:
char c = '\u0457';
printf("%c\n", c); // Output: ї
JavaScript:
const char = '\u0457';
console.log(char); // Output: ї
Java:
char c = '\u0457';
System.out.println(c); // Output: ї
JSON:
{"text": "\u0457"} // Value: ї
Python:
char = '\u0457'
print(char) # Output: ї
Perl:
my $char = "\x{0457}";
print $char; # Output: ї
PHP:
$char = "\x{0457}";
echo $char; // Output: ї
Ruby:
char = "\u{0457}"
puts char # Output: ї
Rust:
let c = '\u{457}';
println!("{}", c); // Output: ї
Go:
char := '\u0457'
fmt.Printf("%c\n", char) // Output: ї
CSS:
/* CSS content property */
.element::before {
content: "\000457"; /* 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=%D1%97
MD5:
2b9c85df934a1592f64d1ebff655dce9
SHA1:
0cc6c73b16e8729ea32baf2c502690792e72b2ef
Base64:
0Zc=