C:
char c = '\u2BA4';
printf("%c\n", c); // Output: ⮤
JavaScript:
const char = '\u2BA4';
console.log(char); // Output: ⮤
Java:
char c = '\u2BA4';
System.out.println(c); // Output: ⮤
JSON:
{"text": "\u2BA4"} // Value: ⮤
Python:
char = '\u2BA4'
print(char) # Output: ⮤
Perl:
my $char = "\x{2BA4}";
print $char; # Output: ⮤
PHP:
$char = "\x{2BA4}";
echo $char; // Output: ⮤
Ruby:
char = "\u{2BA4}"
puts char # Output: ⮤
Rust:
let c = '\u{2BA4}';
println!("{}", c); // Output: ⮤
Go:
char := '\u2BA4'
fmt.Printf("%c\n", char) // Output: ⮤
CSS:
/* CSS content property */
.element::before {
content: "\002BA4"; /* 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=%E2%AE%A4
MD5:
a067aa71afed8db9aaba403fd8639cb8
SHA1:
fcd524905ab15d0bc2861734f432e439db80f19a
Base64:
4q6k