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