C:
char c = '\u7563';
printf("%c\n", c); // Output: 畣
JavaScript:
const char = '\u7563';
console.log(char); // Output: 畣
Java:
char c = '\u7563';
System.out.println(c); // Output: 畣
JSON:
{"text": "\u7563"} // Value: 畣
Python:
char = '\u7563'
print(char) # Output: 畣
Perl:
my $char = "\x{7563}";
print $char; # Output: 畣
PHP:
$char = "\x{7563}";
echo $char; // Output: 畣
Ruby:
char = "\u{7563}"
puts char # Output: 畣
Rust:
let c = '\u{7563}';
println!("{}", c); // Output: 畣
Go:
char := '\u7563'
fmt.Printf("%c\n", char) // Output: 畣
CSS:
/* CSS content property */
.element::before {
content: "\007563"; /* 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%A3
MD5:
a5bc58d535143a15ec92c90a2957b1fa
SHA1:
d50d18866e015a666556d65289d03dee9de59d41
Base64:
55Wj