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