C:
char c = '\u0167';
printf("%c\n", c); // Output: ŧ
JavaScript:
const char = '\u0167';
console.log(char); // Output: ŧ
Java:
char c = '\u0167';
System.out.println(c); // Output: ŧ
JSON:
{"text": "\u0167"} // Value: ŧ
Python:
char = '\u0167'
print(char) # Output: ŧ
Perl:
my $char = "\x{0167}";
print $char; # Output: ŧ
PHP:
$char = "\x{0167}";
echo $char; // Output: ŧ
Ruby:
char = "\u{0167}"
puts char # Output: ŧ
Rust:
let c = '\u{167}';
println!("{}", c); // Output: ŧ
Go:
char := '\u0167'
fmt.Printf("%c\n", char) // Output: ŧ
CSS:
/* CSS content property */
.element::before {
content: "\000167"; /* 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=%C5%A7
MD5:
e00ed64b6e2a47a33c4b0aba0c252757
SHA1:
08ab7c565618e549cd9d75613ef822d399c4c58a
Base64:
xac=