C:
char c = '\uBEC0';
printf("%c\n", c); // Output: 뻀
JavaScript:
const char = '\uBEC0';
console.log(char); // Output: 뻀
Java:
char c = '\uBEC0';
System.out.println(c); // Output: 뻀
JSON:
{"text": "\uBEC0"} // Value: 뻀
Python:
char = '\uBEC0'
print(char) # Output: 뻀
Perl:
my $char = "\x{BEC0}";
print $char; # Output: 뻀
PHP:
$char = "\x{BEC0}";
echo $char; // Output: 뻀
Ruby:
char = "\u{BEC0}"
puts char # Output: 뻀
Rust:
let c = '\u{BEC0}';
println!("{}", c); // Output: 뻀
Go:
char := '\uBEC0'
fmt.Printf("%c\n", char) // Output: 뻀
CSS:
/* CSS content property */
.element::before {
content: "\00BEC0"; /* 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%BB%80
MD5:
40051060bbf52ae1e92e5d2c13fb95ac
SHA1:
2ab901c0c1126873537302c9bed82dab4fd602f2
Base64:
67uA