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