C:
char c = '\u033B';
printf("%c\n", c); // Output: ̻
JavaScript:
const char = '\u033B';
console.log(char); // Output: ̻
Java:
char c = '\u033B';
System.out.println(c); // Output: ̻
JSON:
{"text": "\u033B"} // Value: ̻
Python:
char = '\u033B'
print(char) # Output: ̻
Perl:
my $char = "\x{033B}";
print $char; # Output: ̻
PHP:
$char = "\x{033B}";
echo $char; // Output: ̻
Ruby:
char = "\u{033B}"
puts char # Output: ̻
Rust:
let c = '\u{33B}';
println!("{}", c); // Output: ̻
Go:
char := '\u033B'
fmt.Printf("%c\n", char) // Output: ̻
CSS:
/* CSS content property */
.element::before {
content: "\00033B"; /* 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=%CC%BB
MD5:
422cf515e1e23c7bff306a28c91d36c9
SHA1:
1df6ee2fc9f3cc1d3ad6740566022b77b59e04f2
Base64:
zLs=