C:
char c = '\u1F4BB';
printf("%c\n", c); // Output: 💻
JavaScript:
const char = '\u1F4BB';
console.log(char); // Output: 💻
Java:
char c = '\u1F4BB';
System.out.println(c); // Output: 💻
JSON:
{"text": "\u1F4BB"} // Value: 💻
Python:
char = '\u1F4BB'
print(char) # Output: 💻
Perl:
my $char = "\x{1F4BB}";
print $char; # Output: 💻
PHP:
$char = "\x{1F4BB}";
echo $char; // Output: 💻
Ruby:
char = "\u{1F4BB}"
puts char # Output: 💻
Rust:
let c = '\u{1F4BB}';
println!("{}", c); // Output: 💻
Go:
char := '\u1F4BB'
fmt.Printf("%c\n", char) // Output: 💻
CSS:
/* CSS content property */
.element::before {
content: "\01F4BB"; /* 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=%F0%9F%92%BB
MD5:
d0c6e45cfaa9270a545cfde683da82a3
SHA1:
0f218838b9cdc6c8fe921094e4d700ad9e06f125
Base64:
8J+Suw==