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