C:
char c = '\u6A18';
printf("%c\n", c); // Output: 樘
JavaScript:
const char = '\u6A18';
console.log(char); // Output: 樘
Java:
char c = '\u6A18';
System.out.println(c); // Output: 樘
JSON:
{"text": "\u6A18"} // Value: 樘
Python:
char = '\u6A18'
print(char) # Output: 樘
Perl:
my $char = "\x{6A18}";
print $char; # Output: 樘
PHP:
$char = "\x{6A18}";
echo $char; // Output: 樘
Ruby:
char = "\u{6A18}"
puts char # Output: 樘
Rust:
let c = '\u{6A18}';
println!("{}", c); // Output: 樘
Go:
char := '\u6A18'
fmt.Printf("%c\n", char) // Output: 樘
CSS:
/* CSS content property */
.element::before {
content: "\006A18"; /* 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%A8%98
MD5:
92a6721bb301447743600fb46f80646d
SHA1:
44d262bc520cf540114b489a6efd56e9ff7de0bc
Base64:
5qiY