C:
char c = '\u11AF';
printf("%c\n", c); // Output: ᆯ
JavaScript:
const char = '\u11AF';
console.log(char); // Output: ᆯ
Java:
char c = '\u11AF';
System.out.println(c); // Output: ᆯ
JSON:
{"text": "\u11AF"} // Value: ᆯ
Python:
char = '\u11AF'
print(char) # Output: ᆯ
Perl:
my $char = "\x{11AF}";
print $char; # Output: ᆯ
PHP:
$char = "\x{11AF}";
echo $char; // Output: ᆯ
Ruby:
char = "\u{11AF}"
puts char # Output: ᆯ
Rust:
let c = '\u{11AF}';
println!("{}", c); // Output: ᆯ
Go:
char := '\u11AF'
fmt.Printf("%c\n", char) // Output: ᆯ
CSS:
/* CSS content property */
.element::before {
content: "\0011AF"; /* 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=%E1%86%AF
MD5:
0ab3805928c145147673bb9e74962d74
SHA1:
7a09d558e89526298f64961006dd941dbfad4008
Base64:
4Yav