C:
char c = '\u5C1F';
printf("%c\n", c); // Output: 尟
JavaScript:
const char = '\u5C1F';
console.log(char); // Output: 尟
Java:
char c = '\u5C1F';
System.out.println(c); // Output: 尟
JSON:
{"text": "\u5C1F"} // Value: 尟
Python:
char = '\u5C1F'
print(char) # Output: 尟
Perl:
my $char = "\x{5C1F}";
print $char; # Output: 尟
PHP:
$char = "\x{5C1F}";
echo $char; // Output: 尟
Ruby:
char = "\u{5C1F}"
puts char # Output: 尟
Rust:
let c = '\u{5C1F}';
println!("{}", c); // Output: 尟
Go:
char := '\u5C1F'
fmt.Printf("%c\n", char) // Output: 尟
CSS:
/* CSS content property */
.element::before {
content: "\005C1F"; /* 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%B0%9F
MD5:
f495a9a0931e3e158528e82aa9b0f724
SHA1:
616d46bfb78de067d61f6fd680c10e5650342615
Base64:
5bCf