C:
char c = '\u1368';
printf("%c\n", c); // Output: ፨
JavaScript:
const char = '\u1368';
console.log(char); // Output: ፨
Java:
char c = '\u1368';
System.out.println(c); // Output: ፨
JSON:
{"text": "\u1368"} // Value: ፨
Python:
char = '\u1368'
print(char) # Output: ፨
Perl:
my $char = "\x{1368}";
print $char; # Output: ፨
PHP:
$char = "\x{1368}";
echo $char; // Output: ፨
Ruby:
char = "\u{1368}"
puts char # Output: ፨
Rust:
let c = '\u{1368}';
println!("{}", c); // Output: ፨
Go:
char := '\u1368'
fmt.Printf("%c\n", char) // Output: ፨
CSS:
/* CSS content property */
.element::before {
content: "\001368"; /* 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%A8
MD5:
735ef2605d46f8c07ae22873b35c0f3f
SHA1:
987fd5a212bad563c5e0e4caf61a3a4bae590cfa
Base64:
4Y2o