C:
char c = '\uB3B5';
printf("%c\n", c); // Output: 뎵
JavaScript:
const char = '\uB3B5';
console.log(char); // Output: 뎵
Java:
char c = '\uB3B5';
System.out.println(c); // Output: 뎵
JSON:
{"text": "\uB3B5"} // Value: 뎵
Python:
char = '\uB3B5'
print(char) # Output: 뎵
Perl:
my $char = "\x{B3B5}";
print $char; # Output: 뎵
PHP:
$char = "\x{B3B5}";
echo $char; // Output: 뎵
Ruby:
char = "\u{B3B5}"
puts char # Output: 뎵
Rust:
let c = '\u{B3B5}';
println!("{}", c); // Output: 뎵
Go:
char := '\uB3B5'
fmt.Printf("%c\n", char) // Output: 뎵
CSS:
/* CSS content property */
.element::before {
content: "\00B3B5"; /* 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%8E%B5
MD5:
f60b4a5221f95fc1a60c740fcc67d507
SHA1:
6c815ee3202a9117fd4288a120e07a18296e3e79
Base64:
6461