C:
char c = '\uA730';
printf("%c\n", c); // Output: ꜰ
JavaScript:
const char = '\uA730';
console.log(char); // Output: ꜰ
Java:
char c = '\uA730';
System.out.println(c); // Output: ꜰ
JSON:
{"text": "\uA730"} // Value: ꜰ
Python:
char = '\uA730'
print(char) # Output: ꜰ
Perl:
my $char = "\x{A730}";
print $char; # Output: ꜰ
PHP:
$char = "\x{A730}";
echo $char; // Output: ꜰ
Ruby:
char = "\u{A730}"
puts char # Output: ꜰ
Rust:
let c = '\u{A730}';
println!("{}", c); // Output: ꜰ
Go:
char := '\uA730'
fmt.Printf("%c\n", char) // Output: ꜰ
CSS:
/* CSS content property */
.element::before {
content: "\00A730"; /* 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=%EA%9C%B0
MD5:
04df57fb1e56e2cbbba35759fd84ccb8
SHA1:
ed6bcef0f07c637004a758cd504f0e6b32c170e6
Base64:
6pyw