C:
char c = '\u3024';
printf("%c\n", c); // Output: 〤
JavaScript:
const char = '\u3024';
console.log(char); // Output: 〤
Java:
char c = '\u3024';
System.out.println(c); // Output: 〤
JSON:
{"text": "\u3024"} // Value: 〤
Python:
char = '\u3024'
print(char) # Output: 〤
Perl:
my $char = "\x{3024}";
print $char; # Output: 〤
PHP:
$char = "\x{3024}";
echo $char; // Output: 〤
Ruby:
char = "\u{3024}"
puts char # Output: 〤
Rust:
let c = '\u{3024}';
println!("{}", c); // Output: 〤
Go:
char := '\u3024'
fmt.Printf("%c\n", char) // Output: 〤
CSS:
/* CSS content property */
.element::before {
content: "\003024"; /* 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=%E3%80%A4
MD5:
433c1da6ddb37d67bcf7f0ee465a7ab0
SHA1:
ca78b81d1359496673a3a9bbb152c9fe57b101a3
Base64:
44Ck