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