C:
char c = '\u161C';
printf("%c\n", c); // Output: ᘜ
JavaScript:
const char = '\u161C';
console.log(char); // Output: ᘜ
Java:
char c = '\u161C';
System.out.println(c); // Output: ᘜ
JSON:
{"text": "\u161C"} // Value: ᘜ
Python:
char = '\u161C'
print(char) # Output: ᘜ
Perl:
my $char = "\x{161C}";
print $char; # Output: ᘜ
PHP:
$char = "\x{161C}";
echo $char; // Output: ᘜ
Ruby:
char = "\u{161C}"
puts char # Output: ᘜ
Rust:
let c = '\u{161C}';
println!("{}", c); // Output: ᘜ
Go:
char := '\u161C'
fmt.Printf("%c\n", char) // Output: ᘜ
CSS:
/* CSS content property */
.element::before {
content: "\00161C"; /* 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%98%9C
MD5:
dbe5d46f01514c01fe15d7fb73f440a2
SHA1:
2d8779db16f9b60f6112f9e6413e898519a93f81
Base64:
4Zic