C:
char c = '\u226A';
printf("%c\n", c); // Output: ≪
JavaScript:
const char = '\u226A';
console.log(char); // Output: ≪
Java:
char c = '\u226A';
System.out.println(c); // Output: ≪
JSON:
{"text": "\u226A"} // Value: ≪
Python:
char = '\u226A'
print(char) # Output: ≪
Perl:
my $char = "\x{226A}";
print $char; # Output: ≪
PHP:
$char = "\x{226A}";
echo $char; // Output: ≪
Ruby:
char = "\u{226A}"
puts char # Output: ≪
Rust:
let c = '\u{226A}';
println!("{}", c); // Output: ≪
Go:
char := '\u226A'
fmt.Printf("%c\n", char) // Output: ≪
CSS:
/* CSS content property */
.element::before {
content: "\00226A"; /* 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=%E2%89%AA
MD5:
7f501cb9809461bc1c4f9b1086912ebc
SHA1:
e8c339c498a0c5f57603345db82aac3e3bb2d3d7
Base64:
4omq