C:
char c = '\uB480';
printf("%c\n", c); // Output: 뒀
JavaScript:
const char = '\uB480';
console.log(char); // Output: 뒀
Java:
char c = '\uB480';
System.out.println(c); // Output: 뒀
JSON:
{"text": "\uB480"} // Value: 뒀
Python:
char = '\uB480'
print(char) # Output: 뒀
Perl:
my $char = "\x{B480}";
print $char; # Output: 뒀
PHP:
$char = "\x{B480}";
echo $char; // Output: 뒀
Ruby:
char = "\u{B480}"
puts char # Output: 뒀
Rust:
let c = '\u{B480}';
println!("{}", c); // Output: 뒀
Go:
char := '\uB480'
fmt.Printf("%c\n", char) // Output: 뒀
CSS:
/* CSS content property */
.element::before {
content: "\00B480"; /* 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%92%80
MD5:
0b8b16eec61cdd6bd03487d7ed2efccd
SHA1:
1c72b3e1973b0b940ac9f6716f65d2e60a50d866
Base64:
65KA