C:
char c = '\u1370';
printf("%c\n", c); // Output: ፰
JavaScript:
const char = '\u1370';
console.log(char); // Output: ፰
Java:
char c = '\u1370';
System.out.println(c); // Output: ፰
JSON:
{"text": "\u1370"} // Value: ፰
Python:
char = '\u1370'
print(char) # Output: ፰
Perl:
my $char = "\x{1370}";
print $char; # Output: ፰
PHP:
$char = "\x{1370}";
echo $char; // Output: ፰
Ruby:
char = "\u{1370}"
puts char # Output: ፰
Rust:
let c = '\u{1370}';
println!("{}", c); // Output: ፰
Go:
char := '\u1370'
fmt.Printf("%c\n", char) // Output: ፰
CSS:
/* CSS content property */
.element::before {
content: "\001370"; /* 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%B0
MD5:
ff1d1dd2a54388d9353d490bba5c593a
SHA1:
9718186df6dc44e97d073455292bab2bf435fd23
Base64:
4Y2w