C:
char c = '\u1F4CF';
printf("%c\n", c); // Output: 📏
JavaScript:
const char = '\u1F4CF';
console.log(char); // Output: 📏
Java:
char c = '\u1F4CF';
System.out.println(c); // Output: 📏
JSON:
{"text": "\u1F4CF"} // Value: 📏
Python:
char = '\u1F4CF'
print(char) # Output: 📏
Perl:
my $char = "\x{1F4CF}";
print $char; # Output: 📏
PHP:
$char = "\x{1F4CF}";
echo $char; // Output: 📏
Ruby:
char = "\u{1F4CF}"
puts char # Output: 📏
Rust:
let c = '\u{1F4CF}';
println!("{}", c); // Output: 📏
Go:
char := '\u1F4CF'
fmt.Printf("%c\n", char) // Output: 📏
CSS:
/* CSS content property */
.element::before {
content: "\01F4CF"; /* 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%93%8F
MD5:
ea4464adc0dca51ae31896a044843074
SHA1:
37c0868c5c7a81821f99e2a36980159d0b98aef1
Base64:
8J+Tjw==