C:
char c = '\u0408';
printf("%c\n", c); // Output: Ј
JavaScript:
const char = '\u0408';
console.log(char); // Output: Ј
Java:
char c = '\u0408';
System.out.println(c); // Output: Ј
JSON:
{"text": "\u0408"} // Value: Ј
Python:
char = '\u0408'
print(char) # Output: Ј
Perl:
my $char = "\x{0408}";
print $char; # Output: Ј
PHP:
$char = "\x{0408}";
echo $char; // Output: Ј
Ruby:
char = "\u{0408}"
puts char # Output: Ј
Rust:
let c = '\u{408}';
println!("{}", c); // Output: Ј
Go:
char := '\u0408'
fmt.Printf("%c\n", char) // Output: Ј
CSS:
/* CSS content property */
.element::before {
content: "\000408"; /* 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%88
MD5:
ea53b6fbce7daa4f0541ee1909b73e9c
SHA1:
54066cf22974c8b29a69c8dbc89251af23b6cbde
Base64:
0Ig=