C:
char c = '\u045F';
printf("%c\n", c); // Output: џ
JavaScript:
const char = '\u045F';
console.log(char); // Output: џ
Java:
char c = '\u045F';
System.out.println(c); // Output: џ
JSON:
{"text": "\u045F"} // Value: џ
Python:
char = '\u045F'
print(char) # Output: џ
Perl:
my $char = "\x{045F}";
print $char; # Output: џ
PHP:
$char = "\x{045F}";
echo $char; // Output: џ
Ruby:
char = "\u{045F}"
puts char # Output: џ
Rust:
let c = '\u{45F}';
println!("{}", c); // Output: џ
Go:
char := '\u045F'
fmt.Printf("%c\n", char) // Output: џ
CSS:
/* CSS content property */
.element::before {
content: "\00045F"; /* 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%9F
MD5:
af3e1594c599893406b17bb0d8e72624
SHA1:
cdf67e5d8db03540f73113d107db2c266f9a32d4
Base64:
0Z8=