C:
char c = '\u234C';
printf("%c\n", c); // Output: ⍌
JavaScript:
const char = '\u234C';
console.log(char); // Output: ⍌
Java:
char c = '\u234C';
System.out.println(c); // Output: ⍌
JSON:
{"text": "\u234C"} // Value: ⍌
Python:
char = '\u234C'
print(char) # Output: ⍌
Perl:
my $char = "\x{234C}";
print $char; # Output: ⍌
PHP:
$char = "\x{234C}";
echo $char; // Output: ⍌
Ruby:
char = "\u{234C}"
puts char # Output: ⍌
Rust:
let c = '\u{234C}';
println!("{}", c); // Output: ⍌
Go:
char := '\u234C'
fmt.Printf("%c\n", char) // Output: ⍌
CSS:
/* CSS content property */
.element::before {
content: "\00234C"; /* 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%8D%8C
MD5:
546bdc149f599c29b6456a3b94eed241
SHA1:
70c8c0db46be08e7ae9721e04d2e977aaf44b4e4
Base64:
4o2M