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