C:
char c = '\uB72F';
printf("%c\n", c); // Output: 뜯
JavaScript:
const char = '\uB72F';
console.log(char); // Output: 뜯
Java:
char c = '\uB72F';
System.out.println(c); // Output: 뜯
JSON:
{"text": "\uB72F"} // Value: 뜯
Python:
char = '\uB72F'
print(char) # Output: 뜯
Perl:
my $char = "\x{B72F}";
print $char; # Output: 뜯
PHP:
$char = "\x{B72F}";
echo $char; // Output: 뜯
Ruby:
char = "\u{B72F}"
puts char # Output: 뜯
Rust:
let c = '\u{B72F}';
println!("{}", c); // Output: 뜯
Go:
char := '\uB72F'
fmt.Printf("%c\n", char) // Output: 뜯
CSS:
/* CSS content property */
.element::before {
content: "\00B72F"; /* 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%9C%AF
MD5:
58dddd9a0a8fa0ae1a92826c4179a4ba
SHA1:
34e919b059005e029ffff54377c7360fe76fd985
Base64:
65yv