C:
char c = '\u6A48';
printf("%c\n", c); // Output: 橈
JavaScript:
const char = '\u6A48';
console.log(char); // Output: 橈
Java:
char c = '\u6A48';
System.out.println(c); // Output: 橈
JSON:
{"text": "\u6A48"} // Value: 橈
Python:
char = '\u6A48'
print(char) # Output: 橈
Perl:
my $char = "\x{6A48}";
print $char; # Output: 橈
PHP:
$char = "\x{6A48}";
echo $char; // Output: 橈
Ruby:
char = "\u{6A48}"
puts char # Output: 橈
Rust:
let c = '\u{6A48}';
println!("{}", c); // Output: 橈
Go:
char := '\u6A48'
fmt.Printf("%c\n", char) // Output: 橈
CSS:
/* CSS content property */
.element::before {
content: "\006A48"; /* 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%A9%88
MD5:
45a0505d764b5a0abd031fe1429b0794
SHA1:
3e4f969468e937e71b4e147e6f84edaaf1f65269
Base64:
5qmI