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