C:
char c = '\uBF66';
printf("%c\n", c); // Output: 뽦
JavaScript:
const char = '\uBF66';
console.log(char); // Output: 뽦
Java:
char c = '\uBF66';
System.out.println(c); // Output: 뽦
JSON:
{"text": "\uBF66"} // Value: 뽦
Python:
char = '\uBF66'
print(char) # Output: 뽦
Perl:
my $char = "\x{BF66}";
print $char; # Output: 뽦
PHP:
$char = "\x{BF66}";
echo $char; // Output: 뽦
Ruby:
char = "\u{BF66}"
puts char # Output: 뽦
Rust:
let c = '\u{BF66}';
println!("{}", c); // Output: 뽦
Go:
char := '\uBF66'
fmt.Printf("%c\n", char) // Output: 뽦
CSS:
/* CSS content property */
.element::before {
content: "\00BF66"; /* 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=%EB%BD%A6
MD5:
d8f8b6d987f15ee1aa30a0b652857e5f
SHA1:
d436a30eda9a87fc5c8ddacb66ee3b5c8c679732
Base64:
672m