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