C:
char c = '\u135A';
printf("%c\n", c); // Output: ፚ
JavaScript:
const char = '\u135A';
console.log(char); // Output: ፚ
Java:
char c = '\u135A';
System.out.println(c); // Output: ፚ
JSON:
{"text": "\u135A"} // Value: ፚ
Python:
char = '\u135A'
print(char) # Output: ፚ
Perl:
my $char = "\x{135A}";
print $char; # Output: ፚ
PHP:
$char = "\x{135A}";
echo $char; // Output: ፚ
Ruby:
char = "\u{135A}"
puts char # Output: ፚ
Rust:
let c = '\u{135A}';
println!("{}", c); // Output: ፚ
Go:
char := '\u135A'
fmt.Printf("%c\n", char) // Output: ፚ
CSS:
/* CSS content property */
.element::before {
content: "\00135A"; /* 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%9A
MD5:
eb7b2d57e9354f20c26d7f6e1a07cf9f
SHA1:
8ec30b4c0fd2d667401eb85416842e3dc82a7f18
Base64:
4Y2a