C:
char c = '\u1F83';
printf("%c\n", c); // Output: ᾃ
JavaScript:
const char = '\u1F83';
console.log(char); // Output: ᾃ
Java:
char c = '\u1F83';
System.out.println(c); // Output: ᾃ
JSON:
{"text": "\u1F83"} // Value: ᾃ
Python:
char = '\u1F83'
print(char) # Output: ᾃ
Perl:
my $char = "\x{1F83}";
print $char; # Output: ᾃ
PHP:
$char = "\x{1F83}";
echo $char; // Output: ᾃ
Ruby:
char = "\u{1F83}"
puts char # Output: ᾃ
Rust:
let c = '\u{1F83}';
println!("{}", c); // Output: ᾃ
Go:
char := '\u1F83'
fmt.Printf("%c\n", char) // Output: ᾃ
CSS:
/* CSS content property */
.element::before {
content: "\001F83"; /* 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%BE%83
MD5:
9e2240b6c6086dd4ec7be213b8b0c27a
SHA1:
fa0fa11f5ab37b5f2c5062faa860c5baefe936f4
Base64:
4b6D