C:
char c = '\uB64F';
printf("%c\n", c); // Output: 뙏
JavaScript:
const char = '\uB64F';
console.log(char); // Output: 뙏
Java:
char c = '\uB64F';
System.out.println(c); // Output: 뙏
JSON:
{"text": "\uB64F"} // Value: 뙏
Python:
char = '\uB64F'
print(char) # Output: 뙏
Perl:
my $char = "\x{B64F}";
print $char; # Output: 뙏
PHP:
$char = "\x{B64F}";
echo $char; // Output: 뙏
Ruby:
char = "\u{B64F}"
puts char # Output: 뙏
Rust:
let c = '\u{B64F}';
println!("{}", c); // Output: 뙏
Go:
char := '\uB64F'
fmt.Printf("%c\n", char) // Output: 뙏
CSS:
/* CSS content property */
.element::before {
content: "\00B64F"; /* 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%99%8F
MD5:
21eb3e49fe7b128fc5e3337d36c74ebd
SHA1:
92f08e5b8cb0516565074d65e2b8974a9c6c4b6d
Base64:
65mP