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