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