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