C:
char c = '\u0134';
printf("%c\n", c); // Output: Ĵ
JavaScript:
const char = '\u0134';
console.log(char); // Output: Ĵ
Java:
char c = '\u0134';
System.out.println(c); // Output: Ĵ
JSON:
{"text": "\u0134"} // Value: Ĵ
Python:
char = '\u0134'
print(char) # Output: Ĵ
Perl:
my $char = "\x{0134}";
print $char; # Output: Ĵ
PHP:
$char = "\x{0134}";
echo $char; // Output: Ĵ
Ruby:
char = "\u{0134}"
puts char # Output: Ĵ
Rust:
let c = '\u{134}';
println!("{}", c); // Output: Ĵ
Go:
char := '\u0134'
fmt.Printf("%c\n", char) // Output: Ĵ
CSS:
/* CSS content property */
.element::before {
content: "\000134"; /* 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=%C4%B4
MD5:
e4debfb12d103d4e4dbbc8d6fea92430
SHA1:
80497debcf087db86dd342ed95a218591ea23f76
Base64:
xLQ=