C:
char c = '\u1363';
printf("%c\n", c); // Output: ፣
JavaScript:
const char = '\u1363';
console.log(char); // Output: ፣
Java:
char c = '\u1363';
System.out.println(c); // Output: ፣
JSON:
{"text": "\u1363"} // Value: ፣
Python:
char = '\u1363'
print(char) # Output: ፣
Perl:
my $char = "\x{1363}";
print $char; # Output: ፣
PHP:
$char = "\x{1363}";
echo $char; // Output: ፣
Ruby:
char = "\u{1363}"
puts char # Output: ፣
Rust:
let c = '\u{1363}';
println!("{}", c); // Output: ፣
Go:
char := '\u1363'
fmt.Printf("%c\n", char) // Output: ፣
CSS:
/* CSS content property */
.element::before {
content: "\001363"; /* 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%8D%A3
MD5:
8834dfa0406d90b4f85b1355f8a65bac
SHA1:
2f5e24315adc9f787720787ffeb84d6d839c2a48
Base64:
4Y2j