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