C:
char c = '\u6898';
printf("%c\n", c); // Output: 梘
JavaScript:
const char = '\u6898';
console.log(char); // Output: 梘
Java:
char c = '\u6898';
System.out.println(c); // Output: 梘
JSON:
{"text": "\u6898"} // Value: 梘
Python:
char = '\u6898'
print(char) # Output: 梘
Perl:
my $char = "\x{6898}";
print $char; # Output: 梘
PHP:
$char = "\x{6898}";
echo $char; // Output: 梘
Ruby:
char = "\u{6898}"
puts char # Output: 梘
Rust:
let c = '\u{6898}';
println!("{}", c); // Output: 梘
Go:
char := '\u6898'
fmt.Printf("%c\n", char) // Output: 梘
CSS:
/* CSS content property */
.element::before {
content: "\006898"; /* 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%A2%98
MD5:
9064a9dfa9c82d345e66ff40e5411b17
SHA1:
c69705f2b9b92aed590d3179ce927d45f01896e4
Base64:
5qKY