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