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