C:
char c = '\uBCAF';
printf("%c\n", c); // Output: 벯
JavaScript:
const char = '\uBCAF';
console.log(char); // Output: 벯
Java:
char c = '\uBCAF';
System.out.println(c); // Output: 벯
JSON:
{"text": "\uBCAF"} // Value: 벯
Python:
char = '\uBCAF'
print(char) # Output: 벯
Perl:
my $char = "\x{BCAF}";
print $char; # Output: 벯
PHP:
$char = "\x{BCAF}";
echo $char; // Output: 벯
Ruby:
char = "\u{BCAF}"
puts char # Output: 벯
Rust:
let c = '\u{BCAF}';
println!("{}", c); // Output: 벯
Go:
char := '\uBCAF'
fmt.Printf("%c\n", char) // Output: 벯
CSS:
/* CSS content property */
.element::before {
content: "\00BCAF"; /* 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%B2%AF
MD5:
93cec0fffe45f2667139dd6ca71ee499
SHA1:
1dfa9e529e66c38b587555c15760206124e09d40
Base64:
67Kv