C:
char c = '\u029C';
printf("%c\n", c); // Output: ʜ
JavaScript:
const char = '\u029C';
console.log(char); // Output: ʜ
Java:
char c = '\u029C';
System.out.println(c); // Output: ʜ
JSON:
{"text": "\u029C"} // Value: ʜ
Python:
char = '\u029C'
print(char) # Output: ʜ
Perl:
my $char = "\x{029C}";
print $char; # Output: ʜ
PHP:
$char = "\x{029C}";
echo $char; // Output: ʜ
Ruby:
char = "\u{029C}"
puts char # Output: ʜ
Rust:
let c = '\u{29C}';
println!("{}", c); // Output: ʜ
Go:
char := '\u029C'
fmt.Printf("%c\n", char) // Output: ʜ
CSS:
/* CSS content property */
.element::before {
content: "\00029C"; /* 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=%CA%9C
MD5:
adc39231167d19842ff3fc88e0b7ce08
SHA1:
78fd8306363673b62b962b72620c82a205130c6e
Base64:
ypw=