C:
char c = '\u0407';
printf("%c\n", c); // Output: Ї
JavaScript:
const char = '\u0407';
console.log(char); // Output: Ї
Java:
char c = '\u0407';
System.out.println(c); // Output: Ї
JSON:
{"text": "\u0407"} // Value: Ї
Python:
char = '\u0407'
print(char) # Output: Ї
Perl:
my $char = "\x{0407}";
print $char; # Output: Ї
PHP:
$char = "\x{0407}";
echo $char; // Output: Ї
Ruby:
char = "\u{0407}"
puts char # Output: Ї
Rust:
let c = '\u{407}';
println!("{}", c); // Output: Ї
Go:
char := '\u0407'
fmt.Printf("%c\n", char) // Output: Ї
CSS:
/* CSS content property */
.element::before {
content: "\000407"; /* 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=%D0%87
MD5:
b9a064cacae9c8eb5e2ceedfc40eec97
SHA1:
584a349d96400869a06b2b8ac0c7bb530230e977
Base64:
0Ic=