C:
char c = '\uAF09';
printf("%c\n", c); // Output: 꼉
JavaScript:
const char = '\uAF09';
console.log(char); // Output: 꼉
Java:
char c = '\uAF09';
System.out.println(c); // Output: 꼉
JSON:
{"text": "\uAF09"} // Value: 꼉
Python:
char = '\uAF09'
print(char) # Output: 꼉
Perl:
my $char = "\x{AF09}";
print $char; # Output: 꼉
PHP:
$char = "\x{AF09}";
echo $char; // Output: 꼉
Ruby:
char = "\u{AF09}"
puts char # Output: 꼉
Rust:
let c = '\u{AF09}';
println!("{}", c); // Output: 꼉
Go:
char := '\uAF09'
fmt.Printf("%c\n", char) // Output: 꼉
CSS:
/* CSS content property */
.element::before {
content: "\00AF09"; /* 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%BC%89
MD5:
6d3ec6f3ac922816f2ba5eb4edfdf88b
SHA1:
ebcc80c43aa42fc46613ef31d24856d2e6d649b5
Base64:
6ryJ