C:
char c = '\u68A1';
printf("%c\n", c); // Output: 梡
JavaScript:
const char = '\u68A1';
console.log(char); // Output: 梡
Java:
char c = '\u68A1';
System.out.println(c); // Output: 梡
JSON:
{"text": "\u68A1"} // Value: 梡
Python:
char = '\u68A1'
print(char) # Output: 梡
Perl:
my $char = "\x{68A1}";
print $char; # Output: 梡
PHP:
$char = "\x{68A1}";
echo $char; // Output: 梡
Ruby:
char = "\u{68A1}"
puts char # Output: 梡
Rust:
let c = '\u{68A1}';
println!("{}", c); // Output: 梡
Go:
char := '\u68A1'
fmt.Printf("%c\n", char) // Output: 梡
CSS:
/* CSS content property */
.element::before {
content: "\0068A1"; /* 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%A1
MD5:
82dc2282b4bfccefe46d4dba75ba06c6
SHA1:
a339da443d7b2f0715972bc657e65258a08cea0c
Base64:
5qKh