C:
char c = '\u6DAB';
printf("%c\n", c); // Output: 涫
JavaScript:
const char = '\u6DAB';
console.log(char); // Output: 涫
Java:
char c = '\u6DAB';
System.out.println(c); // Output: 涫
JSON:
{"text": "\u6DAB"} // Value: 涫
Python:
char = '\u6DAB'
print(char) # Output: 涫
Perl:
my $char = "\x{6DAB}";
print $char; # Output: 涫
PHP:
$char = "\x{6DAB}";
echo $char; // Output: 涫
Ruby:
char = "\u{6DAB}"
puts char # Output: 涫
Rust:
let c = '\u{6DAB}';
println!("{}", c); // Output: 涫
Go:
char := '\u6DAB'
fmt.Printf("%c\n", char) // Output: 涫
CSS:
/* CSS content property */
.element::before {
content: "\006DAB"; /* 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%B6%AB
MD5:
f90c0b3ba7089cd95a4389a6419a0e4c
SHA1:
d0afed02d37a53369d9ff1df6df7ae64caff5ad3
Base64:
5rar