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