C:
char c = '\u502B';
printf("%c\n", c); // Output: 倫
JavaScript:
const char = '\u502B';
console.log(char); // Output: 倫
Java:
char c = '\u502B';
System.out.println(c); // Output: 倫
JSON:
{"text": "\u502B"} // Value: 倫
Python:
char = '\u502B'
print(char) # Output: 倫
Perl:
my $char = "\x{502B}";
print $char; # Output: 倫
PHP:
$char = "\x{502B}";
echo $char; // Output: 倫
Ruby:
char = "\u{502B}"
puts char # Output: 倫
Rust:
let c = '\u{502B}';
println!("{}", c); // Output: 倫
Go:
char := '\u502B'
fmt.Printf("%c\n", char) // Output: 倫
CSS:
/* CSS content property */
.element::before {
content: "\00502B"; /* 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%AB
MD5:
db78eb54b1ce7a1c3b2fdaac2cd70544
SHA1:
2fd800aa7f6aabbe001fe04fbd3e94c788bb5195
Base64:
5YCr