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