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