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