C:
char c = '\uBF19';
printf("%c\n", c); // Output: 뼙
JavaScript:
const char = '\uBF19';
console.log(char); // Output: 뼙
Java:
char c = '\uBF19';
System.out.println(c); // Output: 뼙
JSON:
{"text": "\uBF19"} // Value: 뼙
Python:
char = '\uBF19'
print(char) # Output: 뼙
Perl:
my $char = "\x{BF19}";
print $char; # Output: 뼙
PHP:
$char = "\x{BF19}";
echo $char; // Output: 뼙
Ruby:
char = "\u{BF19}"
puts char # Output: 뼙
Rust:
let c = '\u{BF19}';
println!("{}", c); // Output: 뼙
Go:
char := '\uBF19'
fmt.Printf("%c\n", char) // Output: 뼙
CSS:
/* CSS content property */
.element::before {
content: "\00BF19"; /* 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%BC%99
MD5:
62ca690abbab2f85bfa88fd4f149102e
SHA1:
6e697788fdae6bf06dd7e4642ca1b6c8e83eda19
Base64:
67yZ