You'll need to write a VBA procedure for this. Here's an outline:
1. In the outer loop, use For Each to enumerate the tables in the current database, setting a TableDef object variable. Remember to skip any system tables.
2. In a second-level loop, open a Recordset on the table and loop through the rows using Edit and MoveNext methods until the Recordset's EOF property is True.
3. In a third-level loop, enumerate the Fields collection of the recordset. Skip any fields that are not of type dbText or dbMemo.
4. In the innermost loop, use InStr() to test for your character code, and replace each instance with the character you want.
5. Finishing the second-level loop, if you made any changes to the record, call the recordset's Update method before you call MoveNext. (You could actually call the Update method whether or not you made changes, but it will execute more slowly if you do.)
If you're not familiar with DAO programming, the help topics you'll need to study are:
CurrentDb() function
Database object
TableDefs property
OpenRecordset method
TableDef object
Attributes property
Recordset object
EOF property
Edit method
Update method
MoveNext method
Fields property
Field object
Type property
Value property
To scan the field values for your character code, you'll need to use the functions Instr(), Left$(), Mid$(), and Right$(). If you're using Access 2000 or later, you can use the Replace() function instead. Rick Sprague