C:
char c = '\u5F73';
printf("%c\n", c); // Output: 彳
JavaScript:
const char = '\u5F73';
console.log(char); // Output: 彳
Java:
char c = '\u5F73';
System.out.println(c); // Output: 彳
JSON:
{"text": "\u5F73"} // Value: 彳
Python:
char = '\u5F73'
print(char) # Output: 彳
Perl:
my $char = "\x{5F73}";
print $char; # Output: 彳
PHP:
$char = "\x{5F73}";
echo $char; // Output: 彳
Ruby:
char = "\u{5F73}"
puts char # Output: 彳
Rust:
let c = '\u{5F73}';
println!("{}", c); // Output: 彳
Go:
char := '\u5F73'
fmt.Printf("%c\n", char) // Output: 彳
CSS:
/* CSS content property */
.element::before {
content: "\005F73"; /* 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%B3
MD5:
1036bb6de5d18d706817d812a6a8839a
SHA1:
c1b445703d9cd47e3a3c60b50b43c53e339958d6
Base64:
5b2z