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