C:
char c = '\u1631';
printf("%c\n", c); // Output: ᘱ
JavaScript:
const char = '\u1631';
console.log(char); // Output: ᘱ
Java:
char c = '\u1631';
System.out.println(c); // Output: ᘱ
JSON:
{"text": "\u1631"} // Value: ᘱ
Python:
char = '\u1631'
print(char) # Output: ᘱ
Perl:
my $char = "\x{1631}";
print $char; # Output: ᘱ
PHP:
$char = "\x{1631}";
echo $char; // Output: ᘱ
Ruby:
char = "\u{1631}"
puts char # Output: ᘱ
Rust:
let c = '\u{1631}';
println!("{}", c); // Output: ᘱ
Go:
char := '\u1631'
fmt.Printf("%c\n", char) // Output: ᘱ
CSS:
/* CSS content property */
.element::before {
content: "\001631"; /* 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%98%B1
MD5:
64386af5d699542d5c2f0160672edf04
SHA1:
3d34bfc402ac1aef10b1b507c094ca1aecb2ef73
Base64:
4Zix