C:
char c = '\u6893';
printf("%c\n", c); // Output: 梓
JavaScript:
const char = '\u6893';
console.log(char); // Output: 梓
Java:
char c = '\u6893';
System.out.println(c); // Output: 梓
JSON:
{"text": "\u6893"} // Value: 梓
Python:
char = '\u6893'
print(char) # Output: 梓
Perl:
my $char = "\x{6893}";
print $char; # Output: 梓
PHP:
$char = "\x{6893}";
echo $char; // Output: 梓
Ruby:
char = "\u{6893}"
puts char # Output: 梓
Rust:
let c = '\u{6893}';
println!("{}", c); // Output: 梓
Go:
char := '\u6893'
fmt.Printf("%c\n", char) // Output: 梓
CSS:
/* CSS content property */
.element::before {
content: "\006893"; /* 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%93
MD5:
0b91ff5c6783e3f0d72bee3e82c6ae63
SHA1:
648f5246e19c4f1653fd97495db4a47dd28489c8
Base64:
5qKT