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