C:
char c = '\uBF7B';
printf("%c\n", c); // Output: 뽻
JavaScript:
const char = '\uBF7B';
console.log(char); // Output: 뽻
Java:
char c = '\uBF7B';
System.out.println(c); // Output: 뽻
JSON:
{"text": "\uBF7B"} // Value: 뽻
Python:
char = '\uBF7B'
print(char) # Output: 뽻
Perl:
my $char = "\x{BF7B}";
print $char; # Output: 뽻
PHP:
$char = "\x{BF7B}";
echo $char; // Output: 뽻
Ruby:
char = "\u{BF7B}"
puts char # Output: 뽻
Rust:
let c = '\u{BF7B}';
println!("{}", c); // Output: 뽻
Go:
char := '\uBF7B'
fmt.Printf("%c\n", char) // Output: 뽻
CSS:
/* CSS content property */
.element::before {
content: "\00BF7B"; /* 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%BB
MD5:
105a6b41a34c10d170a3b7560f830a88
SHA1:
a303982f1ac51f269378ebee25fb0c3a089080c7
Base64:
6727