C:
char c = '\uAF0E';
printf("%c\n", c); // Output: 꼎
JavaScript:
const char = '\uAF0E';
console.log(char); // Output: 꼎
Java:
char c = '\uAF0E';
System.out.println(c); // Output: 꼎
JSON:
{"text": "\uAF0E"} // Value: 꼎
Python:
char = '\uAF0E'
print(char) # Output: 꼎
Perl:
my $char = "\x{AF0E}";
print $char; # Output: 꼎
PHP:
$char = "\x{AF0E}";
echo $char; // Output: 꼎
Ruby:
char = "\u{AF0E}"
puts char # Output: 꼎
Rust:
let c = '\u{AF0E}';
println!("{}", c); // Output: 꼎
Go:
char := '\uAF0E'
fmt.Printf("%c\n", char) // Output: 꼎
CSS:
/* CSS content property */
.element::before {
content: "\00AF0E"; /* 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%8E
MD5:
5b1a79064e5e46b59b48637459ee4af1
SHA1:
2325102ed37044ade0a42430b7488752a7fb367a
Base64:
6ryO