C:
char c = '\uAFD7';
printf("%c\n", c); // Output: 꿗
JavaScript:
const char = '\uAFD7';
console.log(char); // Output: 꿗
Java:
char c = '\uAFD7';
System.out.println(c); // Output: 꿗
JSON:
{"text": "\uAFD7"} // Value: 꿗
Python:
char = '\uAFD7'
print(char) # Output: 꿗
Perl:
my $char = "\x{AFD7}";
print $char; # Output: 꿗
PHP:
$char = "\x{AFD7}";
echo $char; // Output: 꿗
Ruby:
char = "\u{AFD7}"
puts char # Output: 꿗
Rust:
let c = '\u{AFD7}';
println!("{}", c); // Output: 꿗
Go:
char := '\uAFD7'
fmt.Printf("%c\n", char) // Output: 꿗
CSS:
/* CSS content property */
.element::before {
content: "\00AFD7"; /* 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%BF%97
MD5:
2644b22216684987a4b5c22d49db912a
SHA1:
fa59d6d0d3b8bedb34581e5a639d3c4c37955f84
Base64:
6r+X