C:
char c = '\uD720';
printf("%c\n", c); // Output: 휠
JavaScript:
const char = '\uD720';
console.log(char); // Output: 휠
Java:
char c = '\uD720';
System.out.println(c); // Output: 휠
JSON:
{"text": "\uD720"} // Value: 휠
Python:
char = '\uD720'
print(char) # Output: 휠
Perl:
my $char = "\x{D720}";
print $char; # Output: 휠
PHP:
$char = "\x{D720}";
echo $char; // Output: 휠
Ruby:
char = "\u{D720}"
puts char # Output: 휠
Rust:
let c = '\u{D720}';
println!("{}", c); // Output: 휠
Go:
char := '\uD720'
fmt.Printf("%c\n", char) // Output: 휠
CSS:
/* CSS content property */
.element::before {
content: "\00D720"; /* 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=%ED%9C%A0
MD5:
7f3810b0f3cf3e491b6a68f23d205f44
SHA1:
c159eda080ddcea5b1e1e76bdc9ff7acb48f598e
Base64:
7Zyg