C:
char c = '\uAB06';
printf("%c\n", c); // Output: ꬆ
JavaScript:
const char = '\uAB06';
console.log(char); // Output: ꬆ
Java:
char c = '\uAB06';
System.out.println(c); // Output: ꬆ
JSON:
{"text": "\uAB06"} // Value: ꬆ
Python:
char = '\uAB06'
print(char) # Output: ꬆ
Perl:
my $char = "\x{AB06}";
print $char; # Output: ꬆ
PHP:
$char = "\x{AB06}";
echo $char; // Output: ꬆ
Ruby:
char = "\u{AB06}"
puts char # Output: ꬆ
Rust:
let c = '\u{AB06}';
println!("{}", c); // Output: ꬆ
Go:
char := '\uAB06'
fmt.Printf("%c\n", char) // Output: ꬆ
CSS:
/* CSS content property */
.element::before {
content: "\00AB06"; /* 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=%EA%AC%86
MD5:
5848e002f65845e982fe5a22018434d7
SHA1:
5b0a082792be4d1fa6d77ef0b28af241b13cc5bc
Base64:
6qyG