C:
char c = '\u6897';
printf("%c\n", c); // Output: 梗
JavaScript:
const char = '\u6897';
console.log(char); // Output: 梗
Java:
char c = '\u6897';
System.out.println(c); // Output: 梗
JSON:
{"text": "\u6897"} // Value: 梗
Python:
char = '\u6897'
print(char) # Output: 梗
Perl:
my $char = "\x{6897}";
print $char; # Output: 梗
PHP:
$char = "\x{6897}";
echo $char; // Output: 梗
Ruby:
char = "\u{6897}"
puts char # Output: 梗
Rust:
let c = '\u{6897}';
println!("{}", c); // Output: 梗
Go:
char := '\u6897'
fmt.Printf("%c\n", char) // Output: 梗
CSS:
/* CSS content property */
.element::before {
content: "\006897"; /* 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%97
MD5:
256bb7612a4222d9b05a6b38864f1795
SHA1:
4a2f2d900c50ad38dffc28860968eace086d2e37
Base64:
5qKX