C:
char c = '\uBD0A';
printf("%c\n", c); // Output: 봊
JavaScript:
const char = '\uBD0A';
console.log(char); // Output: 봊
Java:
char c = '\uBD0A';
System.out.println(c); // Output: 봊
JSON:
{"text": "\uBD0A"} // Value: 봊
Python:
char = '\uBD0A'
print(char) # Output: 봊
Perl:
my $char = "\x{BD0A}";
print $char; # Output: 봊
PHP:
$char = "\x{BD0A}";
echo $char; // Output: 봊
Ruby:
char = "\u{BD0A}"
puts char # Output: 봊
Rust:
let c = '\u{BD0A}';
println!("{}", c); // Output: 봊
Go:
char := '\uBD0A'
fmt.Printf("%c\n", char) // Output: 봊
CSS:
/* CSS content property */
.element::before {
content: "\00BD0A"; /* 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%B4%8A
MD5:
1f7f96795f42e700565b81e9f22f73e8
SHA1:
4156c221a89adf65b1ec1d80951fb9c935fe6887
Base64:
67SK