C:
char c = '\u0033';
printf("%c\n", c); // Output: 3
JavaScript:
const char = '\u0033';
console.log(char); // Output: 3
Java:
char c = '\u0033';
System.out.println(c); // Output: 3
JSON:
{"text": "\u0033"} // Value: 3
Python:
char = '\u0033'
print(char) # Output: 3
Perl:
my $char = "\x{0033}";
print $char; # Output: 3
PHP:
$char = "\x{0033}";
echo $char; // Output: 3
Ruby:
char = "\u{0033}"
puts char # Output: 3
Rust:
let c = '\u{33}';
println!("{}", c); // Output: 3
Go:
char := '\u0033'
fmt.Printf("%c\n", char) // Output: 3
CSS:
/* CSS content property */
.element::before {
content: "\000033"; /* Display: 3 */
}
HTML Decimal:
<p>HTML decimal: 3</p> <!-- Display: 3 -->
HTML Hexadecimal:
<p>HTML hex: 3</p> <!-- Display: 3 -->
URL Encoding:
// 3 URL encoding
https://unicodefinder.com/search.php?query=3
MD5:
eccbc87e4b5ce2fe28308fd9f2a7baf3
SHA1:
77de68daecd823babbb58edb1c8e14d7106e83bb
Base64:
Mw==