C:
char c = '\u6400';
printf("%c\n", c); // Output: 搀
JavaScript:
const char = '\u6400';
console.log(char); // Output: 搀
Java:
char c = '\u6400';
System.out.println(c); // Output: 搀
JSON:
{"text": "\u6400"} // Value: 搀
Python:
char = '\u6400'
print(char) # Output: 搀
Perl:
my $char = "\x{6400}";
print $char; # Output: 搀
PHP:
$char = "\x{6400}";
echo $char; // Output: 搀
Ruby:
char = "\u{6400}"
puts char # Output: 搀
Rust:
let c = '\u{6400}';
println!("{}", c); // Output: 搀
Go:
char := '\u6400'
fmt.Printf("%c\n", char) // Output: 搀
CSS:
/* CSS content property */
.element::before {
content: "\006400"; /* 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%90%80
MD5:
cceb6b26406d07df8c4d883d81ca866a
SHA1:
ef78acbc01a6be0a3dfb682424e3615090960947
Base64:
5pCA