C:
char c = '\u6888';
printf("%c\n", c); // Output: 梈
JavaScript:
const char = '\u6888';
console.log(char); // Output: 梈
Java:
char c = '\u6888';
System.out.println(c); // Output: 梈
JSON:
{"text": "\u6888"} // Value: 梈
Python:
char = '\u6888'
print(char) # Output: 梈
Perl:
my $char = "\x{6888}";
print $char; # Output: 梈
PHP:
$char = "\x{6888}";
echo $char; // Output: 梈
Ruby:
char = "\u{6888}"
puts char # Output: 梈
Rust:
let c = '\u{6888}';
println!("{}", c); // Output: 梈
Go:
char := '\u6888'
fmt.Printf("%c\n", char) // Output: 梈
CSS:
/* CSS content property */
.element::before {
content: "\006888"; /* 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%88
MD5:
ccf1fde9c848dcfb6214929ba2a49874
SHA1:
be9e1c4b89aaf8e120394f0037eba13019e14572
Base64:
5qKI