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