C:
char c = '\u0439';
printf("%c\n", c); // Output: й
JavaScript:
const char = '\u0439';
console.log(char); // Output: й
Java:
char c = '\u0439';
System.out.println(c); // Output: й
JSON:
{"text": "\u0439"} // Value: й
Python:
char = '\u0439'
print(char) # Output: й
Perl:
my $char = "\x{0439}";
print $char; # Output: й
PHP:
$char = "\x{0439}";
echo $char; // Output: й
Ruby:
char = "\u{0439}"
puts char # Output: й
Rust:
let c = '\u{439}';
println!("{}", c); // Output: й
Go:
char := '\u0439'
fmt.Printf("%c\n", char) // Output: й
CSS:
/* CSS content property */
.element::before {
content: "\000439"; /* 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%B9
MD5:
5af57ea0892641f24c731d1e4e27cee4
SHA1:
433e4b40a403cdb0e154007f585de3a85a0db73a
Base64:
0Lk=