C:
char c = '\uB49B';
printf("%c\n", c); // Output: 뒛
JavaScript:
const char = '\uB49B';
console.log(char); // Output: 뒛
Java:
char c = '\uB49B';
System.out.println(c); // Output: 뒛
JSON:
{"text": "\uB49B"} // Value: 뒛
Python:
char = '\uB49B'
print(char) # Output: 뒛
Perl:
my $char = "\x{B49B}";
print $char; # Output: 뒛
PHP:
$char = "\x{B49B}";
echo $char; // Output: 뒛
Ruby:
char = "\u{B49B}"
puts char # Output: 뒛
Rust:
let c = '\u{B49B}';
println!("{}", c); // Output: 뒛
Go:
char := '\uB49B'
fmt.Printf("%c\n", char) // Output: 뒛
CSS:
/* CSS content property */
.element::before {
content: "\00B49B"; /* 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%9B
MD5:
0f967ed94b888c05564d110b9ecfc81f
SHA1:
5031c688c40dcc9c865e5117920f79cb4c32bbd7
Base64:
65Kb