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