C:
char c = '\u7568';
printf("%c\n", c); // Output: 畨
JavaScript:
const char = '\u7568';
console.log(char); // Output: 畨
Java:
char c = '\u7568';
System.out.println(c); // Output: 畨
JSON:
{"text": "\u7568"} // Value: 畨
Python:
char = '\u7568'
print(char) # Output: 畨
Perl:
my $char = "\x{7568}";
print $char; # Output: 畨
PHP:
$char = "\x{7568}";
echo $char; // Output: 畨
Ruby:
char = "\u{7568}"
puts char # Output: 畨
Rust:
let c = '\u{7568}';
println!("{}", c); // Output: 畨
Go:
char := '\u7568'
fmt.Printf("%c\n", char) // Output: 畨
CSS:
/* CSS content property */
.element::before {
content: "\007568"; /* 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=%E7%95%A8
MD5:
367997986537a0503e90c306a3a3f5fe
SHA1:
3dfb23f4188270c5397dd29e75852488fffe13c7
Base64:
55Wo