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