C:
char c = '\u0025';
printf("%c\n", c); // Output: %
JavaScript:
const char = '\u0025';
console.log(char); // Output: %
Java:
char c = '\u0025';
System.out.println(c); // Output: %
JSON:
{"text": "\u0025"} // Value: %
Python:
char = '\u0025'
print(char) # Output: %
Perl:
my $char = "\x{0025}";
print $char; # Output: %
PHP:
$char = "\x{0025}";
echo $char; // Output: %
Ruby:
char = "\u{0025}"
puts char # Output: %
Rust:
let c = '\u{25}';
println!("{}", c); // Output: %
Go:
char := '\u0025'
fmt.Printf("%c\n", char) // Output: %
CSS:
/* CSS content property */
.element::before {
content: "\000025"; /* 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=%25
MD5:
0bcef9c45bd8a48eda1b26eb0c61c869
SHA1:
4345cb1fa27885a8fbfe7c0c830a592cc76a552b
Base64:
JQ==