C:
char c = '\uAF43';
printf("%c\n", c); // Output: 꽃
JavaScript:
const char = '\uAF43';
console.log(char); // Output: 꽃
Java:
char c = '\uAF43';
System.out.println(c); // Output: 꽃
JSON:
{"text": "\uAF43"} // Value: 꽃
Python:
char = '\uAF43'
print(char) # Output: 꽃
Perl:
my $char = "\x{AF43}";
print $char; # Output: 꽃
PHP:
$char = "\x{AF43}";
echo $char; // Output: 꽃
Ruby:
char = "\u{AF43}"
puts char # Output: 꽃
Rust:
let c = '\u{AF43}';
println!("{}", c); // Output: 꽃
Go:
char := '\uAF43'
fmt.Printf("%c\n", char) // Output: 꽃
CSS:
/* CSS content property */
.element::before {
content: "\00AF43"; /* 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=%EA%BD%83
MD5:
e6344f656751bbb95d37c019fa9981f6
SHA1:
2b12519c6e2623da3ea27824012778bc268fe747
Base64:
6r2D