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