C:
char c = '\u5F61';
printf("%c\n", c); // Output: 彡
JavaScript:
const char = '\u5F61';
console.log(char); // Output: 彡
Java:
char c = '\u5F61';
System.out.println(c); // Output: 彡
JSON:
{"text": "\u5F61"} // Value: 彡
Python:
char = '\u5F61'
print(char) # Output: 彡
Perl:
my $char = "\x{5F61}";
print $char; # Output: 彡
PHP:
$char = "\x{5F61}";
echo $char; // Output: 彡
Ruby:
char = "\u{5F61}"
puts char # Output: 彡
Rust:
let c = '\u{5F61}';
println!("{}", c); // Output: 彡
Go:
char := '\u5F61'
fmt.Printf("%c\n", char) // Output: 彡
CSS:
/* CSS content property */
.element::before {
content: "\005F61"; /* 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=%E5%BD%A1
MD5:
8019435cbce4dd255e55469df86c161c
SHA1:
38ddf15a13289d9e5526d9eb2a4c764e7093c0cc
Base64:
5b2h