C:
char c = '\u04AF';
printf("%c\n", c); // Output: ү
JavaScript:
const char = '\u04AF';
console.log(char); // Output: ү
Java:
char c = '\u04AF';
System.out.println(c); // Output: ү
JSON:
{"text": "\u04AF"} // Value: ү
Python:
char = '\u04AF'
print(char) # Output: ү
Perl:
my $char = "\x{04AF}";
print $char; # Output: ү
PHP:
$char = "\x{04AF}";
echo $char; // Output: ү
Ruby:
char = "\u{04AF}"
puts char # Output: ү
Rust:
let c = '\u{4AF}';
println!("{}", c); // Output: ү
Go:
char := '\u04AF'
fmt.Printf("%c\n", char) // Output: ү
CSS:
/* CSS content property */
.element::before {
content: "\0004AF"; /* 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%AF
MD5:
221491f0f09e3dae08ee68958390ec02
SHA1:
2e4edc8deb25e1b3ab919a5a26274cb0473ef950
Base64:
0q8=