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