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