C:
char c = '\u0496';
printf("%c\n", c); // Output: Җ
JavaScript:
const char = '\u0496';
console.log(char); // Output: Җ
Java:
char c = '\u0496';
System.out.println(c); // Output: Җ
JSON:
{"text": "\u0496"} // Value: Җ
Python:
char = '\u0496'
print(char) # Output: Җ
Perl:
my $char = "\x{0496}";
print $char; # Output: Җ
PHP:
$char = "\x{0496}";
echo $char; // Output: Җ
Ruby:
char = "\u{0496}"
puts char # Output: Җ
Rust:
let c = '\u{496}';
println!("{}", c); // Output: Җ
Go:
char := '\u0496'
fmt.Printf("%c\n", char) // Output: Җ
CSS:
/* CSS content property */
.element::before {
content: "\000496"; /* 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=%D2%96
MD5:
6412554562185e7a07a6d0cf20234af4
SHA1:
f189e03be39182934ecd0645d6f19033a8dcc619
Base64:
0pY=