C:
char c = '\uD723';
printf("%c\n", c); // Output: 휣
JavaScript:
const char = '\uD723';
console.log(char); // Output: 휣
Java:
char c = '\uD723';
System.out.println(c); // Output: 휣
JSON:
{"text": "\uD723"} // Value: 휣
Python:
char = '\uD723'
print(char) # Output: 휣
Perl:
my $char = "\x{D723}";
print $char; # Output: 휣
PHP:
$char = "\x{D723}";
echo $char; // Output: 휣
Ruby:
char = "\u{D723}"
puts char # Output: 휣
Rust:
let c = '\u{D723}';
println!("{}", c); // Output: 휣
Go:
char := '\uD723'
fmt.Printf("%c\n", char) // Output: 휣
CSS:
/* CSS content property */
.element::before {
content: "\00D723"; /* 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%A3
MD5:
7d9ced93935875e027dd83c7f183955e
SHA1:
94cd9cfbf82879da5dd75e187fad7c8e9cfb740e
Base64:
7Zyj