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