C:
char c = '\u1A08';
printf("%c\n", c); // Output: ᨈ
JavaScript:
const char = '\u1A08';
console.log(char); // Output: ᨈ
Java:
char c = '\u1A08';
System.out.println(c); // Output: ᨈ
JSON:
{"text": "\u1A08"} // Value: ᨈ
Python:
char = '\u1A08'
print(char) # Output: ᨈ
Perl:
my $char = "\x{1A08}";
print $char; # Output: ᨈ
PHP:
$char = "\x{1A08}";
echo $char; // Output: ᨈ
Ruby:
char = "\u{1A08}"
puts char # Output: ᨈ
Rust:
let c = '\u{1A08}';
println!("{}", c); // Output: ᨈ
Go:
char := '\u1A08'
fmt.Printf("%c\n", char) // Output: ᨈ
CSS:
/* CSS content property */
.element::before {
content: "\001A08"; /* 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%88
MD5:
52d4e9242c723cc9a0206bc57fc5b9ea
SHA1:
ea226351446c24109bb79d3e84a21311349af5c4
Base64:
4aiI