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