C:
char c = '\u6891';
printf("%c\n", c); // Output: 梑
JavaScript:
const char = '\u6891';
console.log(char); // Output: 梑
Java:
char c = '\u6891';
System.out.println(c); // Output: 梑
JSON:
{"text": "\u6891"} // Value: 梑
Python:
char = '\u6891'
print(char) # Output: 梑
Perl:
my $char = "\x{6891}";
print $char; # Output: 梑
PHP:
$char = "\x{6891}";
echo $char; // Output: 梑
Ruby:
char = "\u{6891}"
puts char # Output: 梑
Rust:
let c = '\u{6891}';
println!("{}", c); // Output: 梑
Go:
char := '\u6891'
fmt.Printf("%c\n", char) // Output: 梑
CSS:
/* CSS content property */
.element::before {
content: "\006891"; /* 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%91
MD5:
377c1c1ffee003acaab4a23c370c8b35
SHA1:
0e45c97ddeb281160143dd77f8b9606afb78bc0a
Base64:
5qKR