C:
char c = '\u0424';
printf("%c\n", c); // Output: Ф
JavaScript:
const char = '\u0424';
console.log(char); // Output: Ф
Java:
char c = '\u0424';
System.out.println(c); // Output: Ф
JSON:
{"text": "\u0424"} // Value: Ф
Python:
char = '\u0424'
print(char) # Output: Ф
Perl:
my $char = "\x{0424}";
print $char; # Output: Ф
PHP:
$char = "\x{0424}";
echo $char; // Output: Ф
Ruby:
char = "\u{0424}"
puts char # Output: Ф
Rust:
let c = '\u{424}';
println!("{}", c); // Output: Ф
Go:
char := '\u0424'
fmt.Printf("%c\n", char) // Output: Ф
CSS:
/* CSS content property */
.element::before {
content: "\000424"; /* 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%A4
MD5:
1038077f8f032126024dc5236465850e
SHA1:
89606713c32f42c123a9bee6c4cdb7526e8739b5
Base64:
0KQ=