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