C:
char c = '\uB64C';
printf("%c\n", c); // Output: 뙌
JavaScript:
const char = '\uB64C';
console.log(char); // Output: 뙌
Java:
char c = '\uB64C';
System.out.println(c); // Output: 뙌
JSON:
{"text": "\uB64C"} // Value: 뙌
Python:
char = '\uB64C'
print(char) # Output: 뙌
Perl:
my $char = "\x{B64C}";
print $char; # Output: 뙌
PHP:
$char = "\x{B64C}";
echo $char; // Output: 뙌
Ruby:
char = "\u{B64C}"
puts char # Output: 뙌
Rust:
let c = '\u{B64C}';
println!("{}", c); // Output: 뙌
Go:
char := '\uB64C'
fmt.Printf("%c\n", char) // Output: 뙌
CSS:
/* CSS content property */
.element::before {
content: "\00B64C"; /* 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%8C
MD5:
62a103e3b04c67ab76d7d5f8422b4cd2
SHA1:
29cb12ea90609ab90527507f2407510440552b81
Base64:
65mM