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