C:
char c = '\u0060';
printf("%c\n", c); // Output: `
JavaScript:
const char = '\u0060';
console.log(char); // Output: `
Java:
char c = '\u0060';
System.out.println(c); // Output: `
JSON:
{"text": "\u0060"} // Value: `
Python:
char = '\u0060'
print(char) # Output: `
Perl:
my $char = "\x{0060}";
print $char; # Output: `
PHP:
$char = "\x{0060}";
echo $char; // Output: `
Ruby:
char = "\u{0060}"
puts char # Output: `
Rust:
let c = '\u{60}';
println!("{}", c); // Output: `
Go:
char := '\u0060'
fmt.Printf("%c\n", char) // Output: `
CSS:
/* CSS content property */
.element::before {
content: "\000060"; /* 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=%60
MD5:
833344d5e1432da82ef02e1301477ce8
SHA1:
7e15bb5c01e7dd56499e37c634cf791d3a519aee
Base64:
YA==