C:
char c = '\u003C';
printf("%c\n", c); // Output: <
JavaScript:
const char = '\u003C';
console.log(char); // Output: <
Java:
char c = '\u003C';
System.out.println(c); // Output: <
JSON:
{"text": "\u003C"} // Value: <
Python:
char = '\u003C'
print(char) # Output: <
Perl:
my $char = "\x{003C}";
print $char; # Output: <
PHP:
$char = "\x{003C}";
echo $char; // Output: <
Ruby:
char = "\u{003C}"
puts char # Output: <
Rust:
let c = '\u{3C}';
println!("{}", c); // Output: <
Go:
char := '\u003C'
fmt.Printf("%c\n", char) // Output: <
CSS:
/* CSS content property */
.element::before {
content: "\00003C"; /* 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=%3C
MD5:
524a50782178998021a88b8cd4c8dcd8
SHA1:
c4dd3c8cdd8d7c95603dd67f1cd873d5f9148b29
Base64:
PA==