C:
char c = '\uAFC3';
printf("%c\n", c); // Output: 꿃
JavaScript:
const char = '\uAFC3';
console.log(char); // Output: 꿃
Java:
char c = '\uAFC3';
System.out.println(c); // Output: 꿃
JSON:
{"text": "\uAFC3"} // Value: 꿃
Python:
char = '\uAFC3'
print(char) # Output: 꿃
Perl:
my $char = "\x{AFC3}";
print $char; # Output: 꿃
PHP:
$char = "\x{AFC3}";
echo $char; // Output: 꿃
Ruby:
char = "\u{AFC3}"
puts char # Output: 꿃
Rust:
let c = '\u{AFC3}';
println!("{}", c); // Output: 꿃
Go:
char := '\uAFC3'
fmt.Printf("%c\n", char) // Output: 꿃
CSS:
/* CSS content property */
.element::before {
content: "\00AFC3"; /* 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%83
MD5:
314aad71269f4704d5282435a8ab9415
SHA1:
9238080dd2fefa5a06afbfa8407b4ede83e67f10
Base64:
6r+D