C:
char c = '\uB00F';
printf("%c\n", c); // Output: 뀏
JavaScript:
const char = '\uB00F';
console.log(char); // Output: 뀏
Java:
char c = '\uB00F';
System.out.println(c); // Output: 뀏
JSON:
{"text": "\uB00F"} // Value: 뀏
Python:
char = '\uB00F'
print(char) # Output: 뀏
Perl:
my $char = "\x{B00F}";
print $char; # Output: 뀏
PHP:
$char = "\x{B00F}";
echo $char; // Output: 뀏
Ruby:
char = "\u{B00F}"
puts char # Output: 뀏
Rust:
let c = '\u{B00F}';
println!("{}", c); // Output: 뀏
Go:
char := '\uB00F'
fmt.Printf("%c\n", char) // Output: 뀏
CSS:
/* CSS content property */
.element::before {
content: "\00B00F"; /* 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%80%8F
MD5:
4c5691c3a3fd1704dc4f99bf9e91338b
SHA1:
43ae5e412313dfa0d3dd47fe4656f0f025339817
Base64:
64CP