C:
char c = '\u302B';
printf("%c\n", c); // Output: 〫
JavaScript:
const char = '\u302B';
console.log(char); // Output: 〫
Java:
char c = '\u302B';
System.out.println(c); // Output: 〫
JSON:
{"text": "\u302B"} // Value: 〫
Python:
char = '\u302B'
print(char) # Output: 〫
Perl:
my $char = "\x{302B}";
print $char; # Output: 〫
PHP:
$char = "\x{302B}";
echo $char; // Output: 〫
Ruby:
char = "\u{302B}"
puts char # Output: 〫
Rust:
let c = '\u{302B}';
println!("{}", c); // Output: 〫
Go:
char := '\u302B'
fmt.Printf("%c\n", char) // Output: 〫
CSS:
/* CSS content property */
.element::before {
content: "\00302B"; /* 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%AB
MD5:
21e113a9f1d10721c466a9b89bce9a2c
SHA1:
2d172f92c25d5a7cd15294bc8398d51879ed6689
Base64:
44Cr