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