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