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