C:
char c = '\u002F';
printf("%c\n", c); // Output: /
JavaScript:
const char = '\u002F';
console.log(char); // Output: /
Java:
char c = '\u002F';
System.out.println(c); // Output: /
JSON:
{"text": "\u002F"} // Value: /
Python:
char = '\u002F'
print(char) # Output: /
Perl:
my $char = "\x{002F}";
print $char; # Output: /
PHP:
$char = "\x{002F}";
echo $char; // Output: /
Ruby:
char = "\u{002F}"
puts char # Output: /
Rust:
let c = '\u{2F}';
println!("{}", c); // Output: /
Go:
char := '\u002F'
fmt.Printf("%c\n", char) // Output: /
CSS:
/* CSS content property */
.element::before {
content: "\00002F"; /* 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=%2F
MD5:
6666cd76f96956469e7be39d750cc7d9
SHA1:
42099b4af021e53fd8fd4e056c2568d7c2e3ffa8
Base64:
Lw==