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