C:
char c = '\uB001';
printf("%c\n", c); // Output: 뀁
JavaScript:
const char = '\uB001';
console.log(char); // Output: 뀁
Java:
char c = '\uB001';
System.out.println(c); // Output: 뀁
JSON:
{"text": "\uB001"} // Value: 뀁
Python:
char = '\uB001'
print(char) # Output: 뀁
Perl:
my $char = "\x{B001}";
print $char; # Output: 뀁
PHP:
$char = "\x{B001}";
echo $char; // Output: 뀁
Ruby:
char = "\u{B001}"
puts char # Output: 뀁
Rust:
let c = '\u{B001}';
println!("{}", c); // Output: 뀁
Go:
char := '\uB001'
fmt.Printf("%c\n", char) // Output: 뀁
CSS:
/* CSS content property */
.element::before {
content: "\00B001"; /* 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%80%81
MD5:
0a35eeda70d3d74696b864a5ba6a08cf
SHA1:
10823bc5f5fedc496ea89c4ea257f8b773443df3
Base64:
64CB