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