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