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