C:
char c = '\u1707';
printf("%c\n", c); // Output: ᜇ
JavaScript:
const char = '\u1707';
console.log(char); // Output: ᜇ
Java:
char c = '\u1707';
System.out.println(c); // Output: ᜇ
JSON:
{"text": "\u1707"} // Value: ᜇ
Python:
char = '\u1707'
print(char) # Output: ᜇ
Perl:
my $char = "\x{1707}";
print $char; # Output: ᜇ
PHP:
$char = "\x{1707}";
echo $char; // Output: ᜇ
Ruby:
char = "\u{1707}"
puts char # Output: ᜇ
Rust:
let c = '\u{1707}';
println!("{}", c); // Output: ᜇ
Go:
char := '\u1707'
fmt.Printf("%c\n", char) // Output: ᜇ
CSS:
/* CSS content property */
.element::before {
content: "\001707"; /* 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=%E1%9C%87
MD5:
66c7e856c960a94ab96e52153d034178
SHA1:
463af92270e4ac1b8de746bfdc641db1d675e100
Base64:
4ZyH