C:
char c = '\u01F4';
printf("%c\n", c); // Output: Ǵ
JavaScript:
const char = '\u01F4';
console.log(char); // Output: Ǵ
Java:
char c = '\u01F4';
System.out.println(c); // Output: Ǵ
JSON:
{"text": "\u01F4"} // Value: Ǵ
Python:
char = '\u01F4'
print(char) # Output: Ǵ
Perl:
my $char = "\x{01F4}";
print $char; # Output: Ǵ
PHP:
$char = "\x{01F4}";
echo $char; // Output: Ǵ
Ruby:
char = "\u{01F4}"
puts char # Output: Ǵ
Rust:
let c = '\u{1F4}';
println!("{}", c); // Output: Ǵ
Go:
char := '\u01F4'
fmt.Printf("%c\n", char) // Output: Ǵ
CSS:
/* CSS content property */
.element::before {
content: "\0001F4"; /* 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=%C7%B4
MD5:
80df58b9cdab46edbd4a4232f8d58763
SHA1:
e3e98aff21d6c4ad74fa3a74ca487fc8e87be02e
Base64:
x7Q=