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