C:
char c = '\u0071';
printf("%c\n", c); // Output: q
JavaScript:
const char = '\u0071';
console.log(char); // Output: q
Java:
char c = '\u0071';
System.out.println(c); // Output: q
JSON:
{"text": "\u0071"} // Value: q
Python:
char = '\u0071'
print(char) # Output: q
Perl:
my $char = "\x{0071}";
print $char; # Output: q
PHP:
$char = "\x{0071}";
echo $char; // Output: q
Ruby:
char = "\u{0071}"
puts char # Output: q
Rust:
let c = '\u{71}';
println!("{}", c); // Output: q
Go:
char := '\u0071'
fmt.Printf("%c\n", char) // Output: q
CSS:
/* CSS content property */
.element::before {
content: "\000071"; /* Display: q */
}
HTML Decimal:
<p>HTML decimal: q</p> <!-- Display: q -->
HTML Hexadecimal:
<p>HTML hex: q</p> <!-- Display: q -->
URL Encoding:
// q URL encoding
https://unicodefinder.com/search.php?query=q
MD5:
7694f4a66316e53c8cdd9d9954bd611d
SHA1:
22ea1c649c82946aa6e479e1ffd321e4a318b1b0
Base64:
cQ==