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