C:
char c = '\u1373';
printf("%c\n", c); // Output: ፳
JavaScript:
const char = '\u1373';
console.log(char); // Output: ፳
Java:
char c = '\u1373';
System.out.println(c); // Output: ፳
JSON:
{"text": "\u1373"} // Value: ፳
Python:
char = '\u1373'
print(char) # Output: ፳
Perl:
my $char = "\x{1373}";
print $char; # Output: ፳
PHP:
$char = "\x{1373}";
echo $char; // Output: ፳
Ruby:
char = "\u{1373}"
puts char # Output: ፳
Rust:
let c = '\u{1373}';
println!("{}", c); // Output: ፳
Go:
char := '\u1373'
fmt.Printf("%c\n", char) // Output: ፳
CSS:
/* CSS content property */
.element::before {
content: "\001373"; /* 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%B3
MD5:
78f3a443323df3c496102524580d17c4
SHA1:
e3989b3a3bab6bfe2299b1bb70f39629fdb0488a
Base64:
4Y2z