C:
char c = '\u500C';
printf("%c\n", c); // Output: 倌
JavaScript:
const char = '\u500C';
console.log(char); // Output: 倌
Java:
char c = '\u500C';
System.out.println(c); // Output: 倌
JSON:
{"text": "\u500C"} // Value: 倌
Python:
char = '\u500C'
print(char) # Output: 倌
Perl:
my $char = "\x{500C}";
print $char; # Output: 倌
PHP:
$char = "\x{500C}";
echo $char; // Output: 倌
Ruby:
char = "\u{500C}"
puts char # Output: 倌
Rust:
let c = '\u{500C}';
println!("{}", c); // Output: 倌
Go:
char := '\u500C'
fmt.Printf("%c\n", char) // Output: 倌
CSS:
/* CSS content property */
.element::before {
content: "\00500C"; /* 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%80%8C
MD5:
9f4de2c19fcca398949786b9bc21f565
SHA1:
86ba1bb8b0264ac51de5cc21fe4609215442b526
Base64:
5YCM