C:
char c = '\u1A1F';
printf("%c\n", c); // Output: ᨟
JavaScript:
const char = '\u1A1F';
console.log(char); // Output: ᨟
Java:
char c = '\u1A1F';
System.out.println(c); // Output: ᨟
JSON:
{"text": "\u1A1F"} // Value: ᨟
Python:
char = '\u1A1F'
print(char) # Output: ᨟
Perl:
my $char = "\x{1A1F}";
print $char; # Output: ᨟
PHP:
$char = "\x{1A1F}";
echo $char; // Output: ᨟
Ruby:
char = "\u{1A1F}"
puts char # Output: ᨟
Rust:
let c = '\u{1A1F}';
println!("{}", c); // Output: ᨟
Go:
char := '\u1A1F'
fmt.Printf("%c\n", char) // Output: ᨟
CSS:
/* CSS content property */
.element::before {
content: "\001A1F"; /* 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%A8%9F
MD5:
59afd76fcadbea2a3606ede65916d733
SHA1:
bc009e53ed8394e34279f386c930c993cc775d3c
Base64:
4aif