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