C:
char c = '\u6899';
printf("%c\n", c); // Output: 梙
JavaScript:
const char = '\u6899';
console.log(char); // Output: 梙
Java:
char c = '\u6899';
System.out.println(c); // Output: 梙
JSON:
{"text": "\u6899"} // Value: 梙
Python:
char = '\u6899'
print(char) # Output: 梙
Perl:
my $char = "\x{6899}";
print $char; # Output: 梙
PHP:
$char = "\x{6899}";
echo $char; // Output: 梙
Ruby:
char = "\u{6899}"
puts char # Output: 梙
Rust:
let c = '\u{6899}';
println!("{}", c); // Output: 梙
Go:
char := '\u6899'
fmt.Printf("%c\n", char) // Output: 梙
CSS:
/* CSS content property */
.element::before {
content: "\006899"; /* 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%99
MD5:
c51e6926f98b0b66ad96d2e2b427650d
SHA1:
1cfbf0acabef13e64b412e606f7f33ec7c65db77
Base64:
5qKZ