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