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