C:
char c = '\u6895';
printf("%c\n", c); // Output: 梕
JavaScript:
const char = '\u6895';
console.log(char); // Output: 梕
Java:
char c = '\u6895';
System.out.println(c); // Output: 梕
JSON:
{"text": "\u6895"} // Value: 梕
Python:
char = '\u6895'
print(char) # Output: 梕
Perl:
my $char = "\x{6895}";
print $char; # Output: 梕
PHP:
$char = "\x{6895}";
echo $char; // Output: 梕
Ruby:
char = "\u{6895}"
puts char # Output: 梕
Rust:
let c = '\u{6895}';
println!("{}", c); // Output: 梕
Go:
char := '\u6895'
fmt.Printf("%c\n", char) // Output: 梕
CSS:
/* CSS content property */
.element::before {
content: "\006895"; /* 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%95
MD5:
841a3b22465c45e00873a663ab22dd12
SHA1:
2ee341726482336f8b9009984eeb6cf036555081
Base64:
5qKV